Created
September 6, 2024 23:09
-
-
Save KenjiOhtsuka/16fece0dbab2b1f98cd3d9f79d0872cb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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