Module 0
What does "Run code" mean?
From pressing a button to seeing a result.
You write. Python does.
When you press Run code, something simple happens behind the scenes. Your instructions are sent to Python. Python reads them, one by one, and carries them out. Then it shows you whatever your program asked it to display.
Running a program
your codeRun( )result
Your code goes in. Python follows the instructions. Output comes out.
Try it
In the editor on the right, press Run code. You will see the output appear below. Nothing is permanent. You can run code as many times as you want.
What happens when you press Run code?