sleep function?

Alex cut_me_out at hotmail.com
Fri Apr 28 08:44:32 EDT 2000


> Does python have a sleep function? e.g. sleep(60) to wait 60 seconds?

Yeah, in the time module.

import time
time.sleep (10)

> I have no python documentation around just now.

Do you know about the online documentation at python.org/doc?  
http://python.org/doc/current/lib/genindex.html would have been a good
place to start, in this case

Alex.



More information about the Python-list mailing list