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,218
  • 2
  • 16
  • 25
jjguidry
  • 33
  • 1
  • 1
  • 9

1 Answers1

0
import time
time.sleep(5) #wait 5 seconds
Keatinge
  • 4,264
  • 6
  • 23
  • 40