Answers for "how to wait 3 seconds in python"

2

python wait 5 seconds then display

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

making a function wait in python

from time import sleep

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

Python Answers by Framework

Browse Popular Code Answers by Language