Skip to content

Instantly share code, notes, and snippets.

@blammothyst
Created February 27, 2014 20:28
Show Gist options
  • Save blammothyst/9258847 to your computer and use it in GitHub Desktop.
Save blammothyst/9258847 to your computer and use it in GitHub Desktop.
Code from Learn Python the Hard Way(.org) ex 12
y = raw_input("Name? ")
age = raw_input("How old are you? ")
height = raw_input("How tall are you? ")
weight = raw_input("How much do you weigh? ")
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