Follow these steps to make your Hello World! program, or any other simple Python program:
1. Select Python from the Start menu (command line).
You should see something like >>> as a prompt.
You're now working with the Python interpreter in interactive mode. That's when the >>> enters the picture. Python notifies you when you need to type something.
2. Type the following at the popup.
'Hello, World!' print('Hello, World!')
3. Press the Enter key on your keyboard.
Python executes the code that you entered.
The output is given in the diagram below.
