Create a file called hello.py. Type this exactly: python print("Hello World") Save the file. This single line is a complete Python program. The print() function displays whatever you put inside the parentheses.
The quotes around "Hello World" mark it as text (called a string). Without quotes, Python would think Hello and World are variable names and throw an error. Now you need to run this program. There are several ways to do it. Let's look at the most common one.