Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python time delay

import time
while True:
    print("This prints once a minute.")
    time.sleep(60) # Delay for 1 minute (60 seconds).
 
PREVIOUS NEXT
Tagged: #python #time #delay
ADD COMMENT
Topic
Name
9+9 =