Skip to content

Instantly share code, notes, and snippets.

@cschep
Created April 5, 2012 16:39
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 cschep/2312412 to your computer and use it in GitHub Desktop.
Save cschep/2312412 to your computer and use it in GitHub Desktop.
awesome code
x = 0
while x < 10:
x = int(raw_input("What'll it be?"))
if x < 10:
print "It's only %d ya know." % x
else:
print "I guess it's too high now."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment