
Introduction
Python is a high-level, interpreted scripting language developed in the late 1980s by Guido van Rossum at the National Research Institute for Mathematics and Computer Science in the Netherlands. The initial version was published at the alt.sources newsgroup in 1991, and version 1.0 was released in 1994.
Python 2.0 was released in 2000, and the 2.x versions were the prevalent releases until December 2008. At that time, the development team made the decision to release version 3.0, which contained a few relatively small but significant changes that were not backward compatible with the 2.x versions. Python 2 and 3 are very similar, and some features of Python 3 have been backported to Python 2. But in general, they remain not quite compatible.
Download Python From here https://www.python.org/downloads/
Let’s start
Open your Code editor and create a file with name helloworld.py and write this code in this file
Print ('Hello World')
Save This file and open your terminal and run using this command
python helloworld.py
Comment In Python
If you want add comment in code so use this code