Python is a general-purpose programming language.
It is an interpreted language, i.e. the code is converted into an intermediate bytecode which is then executed by the Python interpreter.
In this tutorial we will learn how to write our first python code.
Install the latest python version as stated in this tutorial.
We are going to create our first program in Python. Python source code is written in file with extension .py
Let's create a file hello-world.py anywhere in your hard disk:
print("hello world from python!")
D:\python-hello-world>py hello-world.pyhello world from phyton!