Answers for "how to wait before continue in python"

4

making a function wait in python

from time import sleep

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

wait in python

#Wait in python
#Module required - time
import time
#Wait in for the time you put
time.sleep(0.5)
print('Wait in python')
Posted by: Guest on October-04-2020

Code answers related to "how to wait before continue in python"

Python Answers by Framework

Browse Popular Code Answers by Language