Last active
September 14, 2024 21:04
-
-
Save danielfeitopin/24de914edd24cc76aad8770ef5d1a00c to your computer and use it in GitHub Desktop.
Dancing among us ඞ ඟ ච ඡ ජ ඞ
This file contains hidden or 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
from time import sleep | |
AMONGUS_CODE = 3486 | |
SLEEP_TIME = 0.33 | |
try: | |
i = 0 | |
while True: | |
print(chr(AMONGUS_CODE + i), end='') | |
i = (i + 1) % 5 | |
print('\r', end='') | |
sleep(SLEEP_TIME) | |
except KeyboardInterrupt: | |
exit(0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment