As topic says, we will look into some of the cool feature provided by Python.
Python has a lot of functionality (or say tricks) which makes the language unique from another language such as
1. The Zen of Python
1 |
|
If you type this command on the terminal you will get “The Zen of Python, by Tim Peters” which will help you to improve the readability, usability and maintainability of Python code.
Check out this video for more detailTrey Hunner Readability Counts
2. XKCD Comics
1 |
|
If you type this command on the terminal, you will get a cool comics in your browser like this
3. Swapping of two variable in one line
Python provides a cool functionality to swap two variables in one line using something called tuple unpacking which will make your code shorter and easier to read
1 |
|
If you want to dig deeper into this tuple unpacking, I will suggest to check out this blog by trey hunnerTuple unpacking
4. Create a web server using one line
1 |
|
To create a simple file sharing application go to your folder which you want to share and type the above command then go to your browser and type 127.0.0.1:8000 to open that folder in your browser, you can use this from other devices also if you are in the same network.
Here is a link to know more about thisPython3 Http Server
5. All Data Structure at one place: Collections
1 |
|
This module has data structures which will help you to solve various real-life problems without writing too much code.
Collections module
6. Gem of python: Itertools
Itertools is one of the most important standard library available in Python 3 which has a lot of features inbuilt. Itertools provides the functionality to create fast, memory-efficient, and good-looking code.
You will find a lot of useful function in Itertools module, let us look into one the popular one
1 |
|
To learn more about Itertools check-out this link
Python-itertools
7. Looping with Index: Enumerate
This is a cool feature which provides the index without having to define any counter for index
1 |
|
8. Reversing a list
The reverse is always the tedious task in any programming language but Python’s built-in reversed() function allows you to create a reverse of a list in one line
1 |
|
For more details check-out this link
Python-Reverse-List
9. Adding two lists using Zip
let us say you have two lists and you want to add the elements of that list then python is having a Zip function which will come in handy and give you the result without using a nested loop
1 |
|
Zip operation is popular in Data Science because of the matrix multiplication where Zip can be used to do Row and Column multiplication.
10. List/Set/Dict comprehension
Comprehension provides the easiest way to define any complicated code in one line
let us say you want to square the even number from 1–20
If you use the normal if-else then the code will be like
1 |
|
If using list comprehension, you just have to type a less code
1 |
|
In the same way dictionary comprehension and set comprehension can be used
1 |
|
11. Modern Dictionary
Python dictionary is so powerful that if you go deeper into python then everything revolves around object and dictionary.
If you want to learn more about the dictionary then check this video, you will learn a lot of important feature of dictionary
Modern Dictionary
12. Pretty Print
This is the easiest way to print the list and dictionary in a beautiful way by doing
1 |
|
This comes in handy when working with a large dictionary or if you are working with JSON file then you can use pprint to print the JSON file.
13. Use Interactive “_” Operator.
1 |
|
The “_” references to the output of the last executed expression.
On the top of this Python also provides a lot of external libraries which has a better feature than any programming language, I am naming a few of the top library below
NumpyPandasScikit-LearnScrapyBeautiful SoupOpenCVRequestsMatplotlibPygameSQLAlchemySciPyPython Twisted
After going through all of the cool features, your felling is like
That’s all about Python from my side, If you have any doubt or you want to add something, please comment below.