Answers for "python wait second"

34

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)
Posted by: Guest on January-06-2020
1

Python TIme Wait

#So to time wait You have to import time
import time
print("hello")
time.sleep(1)  #This Will stop the code and Display bye after 1 second.
print("Bye")
Posted by: Guest on May-01-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language