Answers for "add wait time in python"

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
-2

python wait

import time

def wait_until(somepredicate, timeout, period=0.25, *args, **kwargs):
  mustend = time.time() + timeout
  while time.time() < mustend:
    if somepredicate(*args, **kwargs): return True
    time.sleep(period)
  return False
Posted by: Guest on November-26-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language