Return to Snippet

Revision: 36651
at November 24, 2010 14:55 by eliluminado


Initial Code
# First way:
import time
time.sleep(10)

# Second way:
from time import sleep
sleep(10)

Initial URL
http://www.codigopython.com.ar/miniguias/pausa-entre-comandos-y-acciones

Initial Description
Dos formas de usar la función 'sleep' de Python.

Two ways to use the 'sleep' function in Python.

Initial Title
Using the 'sleep' function

Initial Tags
Bash

Initial Language
Python