Answers for "waiting some 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
1

python 1 second delay

import time
time.sleep(5)   # Delays for 5 seconds. You can also use a float value.
Posted by: Guest on April-19-2021

Python Answers by Framework

Browse Popular Code Answers by Language