Ejemplo 1: Python espera 1 segundo
import time
# Wait for 5 seconds
time.sleep(5)
# Wait for 300 milliseconds
# .3 can also be used
time.sleep(.300)
Ejemplo 2: como esperar en Python
import time
#Waits 1 second
time.sleep(1)
Ejemplo 3: retardo de tiempo de Python
import time
while True:
print("This prints once a minute.")
time.sleep(60) # Delay for 1 minute (60 seconds).
Ejemplo 4: código Python para esperar
# 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
Ejemplo 5: hacer que una función espere en python
from time import sleep
>>> sleep(4)
Ejemplo 6: esperar en Python
#Wait in python
#Module required - time
import time
#Wait in for the time you put
time.sleep(0.5)
print('Wait in python')
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)