vote up 2 vote down star
1

is there any way to leave a time delay between the execution of two lines of code?

flag

1 Answer

vote up 7 vote down check

You can use the sleep() function in the time module. It can take a float argument for sub second resolution.

from time import sleep
sleep(0.1) # Time in seconds.
link|flag
is it completely cross plat or there is any kind of issue on Win, for example, I'd have to care about? Thank you in advance. – AlberT Oct 22 at 8:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.