Skip to content

Instantly share code, notes, and snippets.

@MayankFawkes
Created October 1, 2019 16:22
Show Gist options
  • Save MayankFawkes/72534f7102f2c8a1b67e6004b13a0585 to your computer and use it in GitHub Desktop.
Save MayankFawkes/72534f7102f2c8a1b67e6004b13a0585 to your computer and use it in GitHub Desktop.
Get Live Time
import sys
import time
while True:
sys.stdout.write(str(time.ctime()))
sys.stdout.write("\r")
sys.stdout.flush()
time.sleep(0.1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment