What you are building
Write a programme that prints three lines of text on the screen, in this exact order:
What Python needs from you
Python reads your file from the top line to the bottom line, one line at a time, and does exactly what each line says. Nothing more. If you want three lines of text, you write three instructions.
print(). Whatever you put inside the brackets is what the tool works on. print is spelt in small letters, always."Hello, world!". The quotes tell Python "this is text to be used as it is, do not try to understand it". Both quotes must be the same kind, and both must be there.#. Python ignores it completely. It is a message for the human reading the file, usually saying what the programme does.Arrange the steps
Forget the Python for a moment. These are the four things the programme has to do, listed in a jumbled order. Click them in the order they should happen.
The note to the reader belongs at the top. After that, the three pieces of text must be printed in the same order as the output you were shown in stage 1.
Your plan
Empty. Click a step below to add it here.
Steps to choose from
Fill the statements
Your four steps, now written as Python, in the order you put them. Three words are missing. Choose what goes in each blank — and if you get one wrong, Python will tell you exactly what it did not understand when you run the programme.
Three blanks, three choices to make. Leave nothing on "choose…".
Run and read
This is your programme as it stands. Press run to see what Python does with it.