/ Published in: Python
Dos formas de usar la función 'sleep' de Python.
Two ways to use the 'sleep' function in Python.
Two ways to use the 'sleep' function in Python.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
# First way: import time time.sleep(10) # Second way: from time import sleep sleep(10)
URL: http://www.codigopython.com.ar/miniguias/pausa-entre-comandos-y-acciones