What is Python ?
Python is a popular "High Level Programming Language"
Lets learn how it came about and what makes it so popular.
According to the TIOBE (The Importance Of Being Earnest) community index, Python is currently ranked no. #4. Which is pretty high than the rest.
The index is calculated taking various search engine results into account.
Python is being used in various application areas such as :
Python supports multiple programming paradigms including :
It is also an Open Source Language. Many developers contribute towards its development.
However, Guido van Rossum (BDFL) is the principle author. The Python community has affectionately given him the title of Benevolent Dictator for Life.
The Design Philosophy of Python is summarized in a collection of 20 principles.Some of which are :
Here is some fun you can try.
Fire up IDLE, and type in
Lets learn how it came about and what makes it so popular.
According to the TIOBE (The Importance Of Being Earnest) community index, Python is currently ranked no. #4. Which is pretty high than the rest.
The index is calculated taking various search engine results into account.
Python is being used in various application areas such as :
- Web Development
- Scientific Computing
- Data Analytics
Python supports multiple programming paradigms including :
- Imperative
- Object Oriented
- Procedural
- Functional
It is also an Open Source Language. Many developers contribute towards its development.
However, Guido van Rossum (BDFL) is the principle author. The Python community has affectionately given him the title of Benevolent Dictator for Life.
The Design Philosophy of Python is summarized in a collection of 20 principles.Some of which are :
- Beautiful is better than ugly. 💮
- Explicit is better than Implicit.
- Simple is better than complex.
- Complex is better than complicated.
- Readability counts.
Here is some fun you can try.
Fire up IDLE, and type in
>>> import this
Try for yourself.
Comments
Post a Comment