Is there a way of reading one single character from the user input? For instance, they press one key at the terminal and it is returned (sort of like getch()).
getch()
The build-in raw_input should help.
for i in range(3): print ("So much work to do!") k = raw_input("Press any key to continue...") print ("Ok, back to work.")