Skip to content

Instantly share code, notes, and snippets.

@corentinbettiol
Last active November 4, 2021 15:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save corentinbettiol/a1ae4cfd204640f8aba2eb2ebdeb9474 to your computer and use it in GitHub Desktop.
Save corentinbettiol/a1ae4cfd204640f8aba2eb2ebdeb9474 to your computer and use it in GitHub Desktop.
Display an arrow.

Display this in your term:

arrow.gif

May be useful for running loops? Idk.

I found the chars here.

from time import sleep
while 1:
print("\r \u27a9 ", end="")
sleep(0.15)
print("\r \u27ab ", end="")
sleep(0.15)
print("\r \u27ac ", end="")
sleep(0.15)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment