
What is python programming?
Python is a high-level object-oriented programming language created by Guido Rossum in 1989. It provides constructs that enable clear programming on both large scale and small scale companies. python. Its high-level built-in data structures combined with dynamic typing and dynamic binding makes it attractive for Rapid application development. Simple and easy to learn the syntax increases the readability and reduces the cost of the maintenance. Additionally, in python basics says that there is no compilation step and edit step debug is incredibly fast.
Click What is python programming for more elaborate details.
Version History :
Python has three major versions. let us talk about one by one in detail.
Version 1.0:
Python 1.0 released in January 1994. This python version includes major new features like filters, lambda, and maps etc.
Version 2.0:
Python 2.0 was released in October 2000. In this versions features like full garbage collector, list comprehensions were included and support Unicode.
Version 3.0 :
The latest version released in 2008. So, the major changes of these versions shown below:
In this python version, the print is a function.
Instead of lists, we have views and iterators.
More simplified rules for ordering the comparisons
Here when we divide two integers, the resultant results a float instead of an integer.
One drawback of this versions it is not backward compact-able with python 2.x.
Check once what are the major difference between python 2 & 3
Python Interpreter :
An interpreter is basically a computer programming languages that execute the program directly without compilation. So, It performs instructions written in programming (or) scripting language. Unlike JAVA , python uses interpreter
So now let me take to how to install python in the local system.