Skip to content

Instantly share code, notes, and snippets.

@timothymugayi
Created February 25, 2020 12:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timothymugayi/d65536b7adbf352cb2517fb956614f2c to your computer and use it in GitHub Desktop.
Save timothymugayi/d65536b7adbf352cb2517fb956614f2c to your computer and use it in GitHub Desktop.
import time
def run_me_now():
print("Am running")
time.sleep(3) # suspends execution for the given number of seconds
print("Am still running")
time.sleep(3)
print("running...")
time.sleep(3)
run_me_now()
print("am done!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment