How To/python/

#!python
 
"""
time.sleep(int seconds)
 
Stop executing script for X seconds.
"""
 
import time
 
print time.localtime()
time.sleep(10)
print time.localtime()
 
#(2007, 10, 2, 19, 24, 32, 3, 276, 1)
#(2007, 10, 2, 19, 24, 42, 3, 276, 1)