Python Quickstart
Python is an interpreted programming language, this means that as a developer you write Python (.py) files in a text editor and then put those files into the python interpreter to be executed.
The way to run a python file is like this on the command line:

Where "helloworld.py" is the name of your python file.
print("Hello, World!")
Let's write our first Python file, called helloworld.py, which can be done in any text editor.