Contact: aviboots(AT)netvision.net.il
41,615 questions
54,278 answers
573 users
import time print("pause for 2 seconds...") time.sleep(2) print("pause end") ''' run: pause for 2 seconds... pause end '''
def pause(): s = input("Press the <ENTER> key to continue...") pause() print("continue...") ''' run: Press the <ENTER> key to continue... continue... '''