Step 2 – More printing
Next we need to print a welcome message.
Add to your program.

- Underneath your code to display the title add: print("How good are you at times tables?")
- Run your code (Run > Run Module)
Python will ask you to save your code each time you make a change and then run it. Just say OK each time.
This should look OK, but there's something simple we can add straight away.

- Change your code to create a blank line between the two lines (press Enter at the end of the first line)
- Type this code: print()
- Run the code (they keyboard shortcut for running code is the F5 key at the top of the keyboard)
This simply leaves a blank line after the title. Which I think looks a lot nicer.