Answers for "how to wait for 10 seconds in python"

19

wait function python

import time
#Waits 1 second
time.sleep(1)
Posted by: Guest on March-07-2020
2

python wait 5 seconds then display

from time import sleep
sleep(2)   
print("hello world")
Posted by: Guest on January-27-2021

Python Answers by Framework

Browse Popular Code Answers by Language