Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python wait 1 sec

import time
 
# Wait for 5 seconds
time.sleep(5)
 
# Wait for 300 milliseconds
# .3 can also be used
time.sleep(.300)
 
PREVIOUS NEXT
Tagged: #python #wait #sec
ADD COMMENT
Topic
Name
2+3 =