How to just wait 3 secs ?

Scott F sdfATexpertuneDOTcom
Tue May 18 12:47:58 EDT 2004


Marcello Pietrobon <teiffel at attglobal.net> wrote in 
news:mailman.50.1084893955.6949.python-list at python.org:

> I would like to make my script to wait 3 seconds ( so I can read the 
> output on the console )
> and then continue.
> How do I do it ?

from time import sleep

sleep(3)




More information about the Python-list mailing list