Answers for "python wait op muisklik"

7

python code to wait

# You need to import time first
import time
#now you have time you can make time wait/sleep
time.sleep(10)
#time will wait/sleep for 10 seconds
Posted by: Guest on October-25-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

Python Answers by Framework

Browse Popular Code Answers by Language