Skip to content

Instantly share code, notes, and snippets.

Created February 27, 2011 06:55
Show Gist options
  • Save anonymous/845973 to your computer and use it in GitHub Desktop.
Save anonymous/845973 to your computer and use it in GitHub Desktop.
Need to figure this out
print "How old are you?",
age = raw_input(18)
print "How tall are you?",
height = raw_input(5'6")
print "How much do you weigh?",
weight = raw_input(140lbs)
print "So, you're %r old, %r tall and %r heavy." % (
18, 5\'7", 140lbs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment