1import time
2print("This is how to pause a program")
3time.sleep(5)
4print("Did you saw that i slept for 5 seconds")
1import time
2
3time.sleep(amount of seconds you want to pause the script for)
4
5
6Example :
7
8import time
9secondstogo = input("How much seconds do you want to wait? : ")
10print(f"waiting {secondstogo} seconds")
11time.sleep(secondstogo)