Skip to content

Instantly share code, notes, and snippets.

@athphane
Last active May 25, 2020 20:39
Show Gist options
  • Save athphane/7ba2cd7c71d9a29939f1e4f40c9560aa to your computer and use it in GitHub Desktop.
Save athphane/7ba2cd7c71d9a29939f1e4f40c9560aa to your computer and use it in GitHub Desktop.
import time
def emoji_cycle():
deq = deque(list("πŸŒ—πŸŒ˜πŸŒ‘πŸŒ’πŸŒ“πŸŒ”πŸŒ•πŸŒ–"))
for x in range(32):
time.sleep(0.3)
print("".join(deq))
deq.rotate(1)
if __name__ == '__main__':
emoji_cycle()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment