1 ST
1 ST
Now you might be suddenly bogged with the question, why Python? According to Institute of
Electrical and Electronics Engineers (IEEE) 2016 ranking Python ranked third after C and Java.
As per Indeed.com's data of 2016, the Python job market search ranked fifth. Clearly, all the
data points to the ever rising demand in the job market for Python. Its a cool language if you
want to learn just for fun or if you want to build your career around Python, you will adore the
language. At school level, many schools have started including Python programming for kids.
With new technologies taking the market by surprise Python has been playing a dominant role.
Whether it is cloud platform, mobile app development,BigData, IoT with Raspberry Pi, or the
new Blockchain technology, Python is being seen as a niche language platform to develop and
deliver a scalable and robust applications.
Python applications
One of the most famous platforms where Python is extensively used is YouTube. The other
places where you will find Python being extensively used are the special effects in Hollywood
movies, drug evolution and discovery, traffic control systems, ERP systems,cloud hosting, e-
commerce platform, CRM systems, and whatever field you can think of.
Versions
At this time Python 2.x and Python 3.x are available.
Implementations of Python
Major implementations include CPython, Jython, IronPython, MicroPython, and PyPy.
The preceding screenshot is what we call Python IDLE, which comes bundled with the Python
installation. The next screenshot is of the command line that also comes bundled with the
Python installation, or we can simply launch the Python command through the windows
command line and get Python command line. For most of our programming instructions, we
will be using the Python command line:
Comments in Python
In Python, there are two types of comments--one is a single-line comment and the other is
multiline comment. For a single-line comment, # is used, while for a multiline comment,triple
quotes """ are used: