Logo

Programming-Idioms

History of Idiom 45 > diff from v6 to v7

Edit summary for version 7 by :

Version 6

2015-08-20, 17:09:51

Version 7

2015-08-20, 18:20:30

Idiom #45 Pause execution for 5 seconds

Sleep for 5 seconds in current thread, before proceeding with next instructions.

Idiom #45 Pause execution for 5 seconds

Sleep for 5 seconds in current thread, before proceeding with next instructions.

Imports
import time
Code
time.sleep(5)