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,453
  • 3
  • 21
  • 47
  • 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
  • 5,652
  • 2
  • 19
  • 36
DRobinson
  • 4,391
  • 20
  • 31