Answers for "wait in in pytohn"

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
4

making a function wait in python

from time import sleep

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

Python Answers by Framework

Browse Popular Code Answers by Language