Open advent2 and File, Save As, advent3
In this section we show you how you can pause for effect
Vocabulary: float or floating point numbers are decimal values or fractional numbers like 27.11 and 1.2
Use some sleep(3.0) commands to pause between print statements, giving the reader/player time to absorb what is happening. This is similar to the wait block in Scratch.
At the very top of your advent3 file, add
from time import sleep #This allows you to use the sleep pause command.
if event1 == ("s"):
print("Carefully you edge past")
sleep(2.0) #pause for two seconds
print("The rat turns its head towards you")
Add at least one sleep command to your code