Introduction to Python:
Introduction:
Python is an extremely popular computer programming language. Its popularity lies in the fact that its procedural but at the same time object oriented too. Its interpreted but compiled too. Its high level but provides many low-level interfaces for the operating system too.
In short, Python is an interpreted, high level, object-oriented programing language. It was developed by Guido Van Rossum in 1991. However unlike of many other languages, python has gone through continuous upgrades and feature enhancements. The first major release was 3.0 in 2008. After that all the versions are canonically written as 3.x
Installation of python:
- Download python from https://www.python.org/downloads/
- When downloaded, launch the installer file by double clicking on it.
- An installer wizard like the following will appear:
- Here we have four important things to do:
- Install now will install the python with the recommended settings.
- Customize installation will let you customize the settings of installation in your own way.
- The checkbox Install launcher for all users will install python in a way that it is available for all the user accounts on that PC.
- The checkbox Add Python to PATH lets the Python installer add an environment variable as well. As long as we have to work on the default libraries and functions, adding PATH is not needed at all but if we need to install some external libraries, it is required.
- Once the installation is successfully completed, we are ready to work on Python.