1

Possible Duplicate:
How can I make a time delay in Python?

In Python, how can you make things delay? Like in RBLX.lua, you go "wait(3)" and the current script would delay for 3 seconds. How can you do that in Python?

Siddharth Satpathy
  • 2,737
  • 4
  • 29
  • 52
  • Look here: http://stackoverflow.com/questions/510348/how-can-i-make-a-time-delay-in-python – Emil Feb 22 '12 at 20:56

1 Answers1

2

You can use this for a 3 second delay:

import time
time.sleep(3)
olinox14
  • 6,177
  • 2
  • 22
  • 39
DRobinson
  • 4,441
  • 22
  • 31