This week, we will:
To run Python, search your program for IDLE. Open that program.
Now something like this will popup:
That's a Python shell. You can play around with the console like assigning variables, adding numbers, using it as a calculator and it's pretty nice.
However, typically we want to write something nicer so for our purposes, we will write Python scripts or programs. Let's do that.
Choose File -> New File. Now another blank screen will pop up. Let's write our first simple program. Type . . .
print("Hello World")
Now go back to the navigation bar and click Run.