Answers for "how to add a pause in python"

23

python time delay

import time
while True:
    print("This prints once a minute.")
    time.sleep(60) # Delay for 1 minute (60 seconds).
Posted by: Guest on March-15-2020
19

wait function python

import time
#Waits 1 second
time.sleep(1)
Posted by: Guest on March-07-2020
4

pause program python

# To delay excusion use the time library
import time

time.sleep(secs)
Posted by: Guest on March-08-2020
4

making a function wait in python

from time import sleep

>>> sleep(4)
Posted by: Guest on September-23-2020
0

how to make a pause in python

import time
time.sleep(5) # Wacht 5 seconden
Posted by: Guest on February-12-2021

Python Answers by Framework

Browse Popular Code Answers by Language