Python Tutorial for Beginners - Setup the python
Python Tutorials for Beginners - Setup of Python3 in Windows, Linus, and Mac
History
Python was created in the early 1990s by Guido van Rossum at Stichting Mathematisch Centrum in the Netherlands as a successor of a language called ABC. Guido remains Python’s principal author, although it includes many contributions from others.
Installation:
How to install python on Windows?
To install python in windows to go https://www.python.org/downloads/.
How to install python on Linus?
Open command prompt and write:
$ sudo apt-get update
$ sudo apt-get install python3.6
How to download python on Mac os?
To install python in windows to go https://www.python.org/downloads/release/python-394/.
How to check the version of the python that is installed in your operating system?
Open the command prompt and write.
python --version
Add Comment
comment url