Step 1 – Printing, but on the screen
Let's start by displaying the title on the screen.

- Type this code into the code window: print("Average Calculator")
- Press Enter to get on to a new line
- Check that you closed the quotes (") and the brackets. If you don't do both of those the progam won't run
It's as simple as that: every time you use print("words here") this will print those words on to the screen.
Save the program
Before we can check the program works, we need to save it. You have to save every time you make a change.
- Click File > Save As
- IMPORTANT: make sure you're saving in your OneDrive
- Call the program something like average
- Press Save
Now we can run the program and check that it works:
- Click Run at the top and choose Run Module
The program should run and display the words Hello World! If it doesn't, check your line of code and then run it again.