Skip to content

Instantly share code, notes, and snippets.

@insom
Created April 26, 2013 16:14
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save insom/5468461 to your computer and use it in GitHub Desktop.
Save insom/5468461 to your computer and use it in GitHub Desktop.
Emoji Phases of the Moon in Python
import sys, time
while True:
for i in range(311, 319):
print "\r", eval("u'\U0001f%d'" % i), "",
sys.stdout.flush()
time.sleep(0.1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment