I want it to run the first line print 1 then wait 1 second to run the second command print 2, etc.
Pseudo-code:
print 1
wait(1 seconds)
print 2
wait(0.45 seconds)
print 3
wait(3 seconds)
print 4
|
|
|
||||
|
|
|
All the answers have assumed that you want or can manually insert
If you want to delay execution of each line, either you can manually insert
Without trace output is:
With trace output is:
You can further tweak it according to your needs, may be checking line contents too and most importantly this is very easy to disable and will work with any code. |
|||||
|
|
I've heard (although can't say for myself) that the whole time.sleep thing isn't a good practice. I was told that threading.Timer was better but that might not do exactly what you want. See http://stackoverflow.com/questions/391621/compare-using-thread-sleep-and-timer-for-delayed-execution |
|||
|