Skip to content

Instantly share code, notes, and snippets.

@danielfeitopin
Last active September 14, 2024 21:04
Show Gist options
  • Save danielfeitopin/24de914edd24cc76aad8770ef5d1a00c to your computer and use it in GitHub Desktop.
Save danielfeitopin/24de914edd24cc76aad8770ef5d1a00c to your computer and use it in GitHub Desktop.
Dancing among us ඞ ඟ ච ඡ ජ ඞ
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