Skip to content

Instantly share code, notes, and snippets.

@KenjiOhtsuka
Created September 6, 2024 23:09
Show Gist options
  • Save KenjiOhtsuka/16fece0dbab2b1f98cd3d9f79d0872cb to your computer and use it in GitHub Desktop.
Save KenjiOhtsuka/16fece0dbab2b1f98cd3d9f79d0872cb to your computer and use it in GitHub Desktop.
import datetime
import time
total = 60
total_width = len(str(total))
s = datetime.datetime.now()
while True:
c = datetime.datetime.now()
t = int(total - (c - s).total_seconds())
if t <= 0:
print("\r" + str(0).rjust(total_width))
print("time over")
break
print("\r" + str(t).rjust(total_width), end='')
time.sleep(20 / 1000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment