Skip to content

Instantly share code, notes, and snippets.

@blammothyst
Created February 27, 2014 20:24
Show Gist options
  • Select an option

  • Save blammothyst/9258781 to your computer and use it in GitHub Desktop.

Select an option

Save blammothyst/9258781 to your computer and use it in GitHub Desktop.
Code from Learn Python the Hard Way(.org) ex 11
print "How old are you?",
age = raw_input ()
print "How tall are you?",
height = raw_input ()
print "How much do you weight?",
weight = raw_input ()
print "So you're %r old, %r tall and %r heavy." % (
age, height, weight)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment