Answers for "how to do wait in python"

19

wait function python

import time
#Waits 1 second
time.sleep(1)
Posted by: Guest on March-07-2020
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
4

making a function wait in python

from time import sleep

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

how to program python to wait

# Example code

import time

time.sleep(3)
print("Three seconds is over!")



# Tutorial

import time  # This is mandatory to make this work.

time.sleep(x)  # x being the time you want the system to wait, in seconds.
# Code you want to execute goes here.
Posted by: Guest on May-08-2021

Python Answers by Framework

Browse Popular Code Answers by Language