There are a couple lines of code that should already be in the main.py file:
import time
This command imports the time
library. This will allow python to sleep
- basically, to wait some number of seconds before running the next command.
# Story will go below
This line is a code comment - basically, a line of code that does nothing, but can provide context or insight to the person reading the code.
It's up to you to add the code for the story below!