Off Topic Lounge
all you have to do is use the print command, input command and the sleep command
sleep command
import time
time.sleep(5)
#5 = 5 seconds
print command
print('hello world!')
input command
input('press any key to continue...')
#its like a pause button you have to unpause
example...