1

Without manipulating the actual date and time using the datetime module, is there any way to basically say:

# wait x amount of time

call_function()

Is there any way to replicate that without using datetime? If not, how would I do it using datetime?

Jason
  • 2,278
  • 2
  • 17
  • 25
jjguidry
  • 43
  • 1
  • 1
  • 9

1 Answers1

0
import time
time.sleep(5) #wait 5 seconds
Keatinge
  • 4,330
  • 6
  • 25
  • 44