Skip to content

Instantly share code, notes, and snippets.

@adaptives
Created September 12, 2011 10:06
Show Gist options
  • Select an option

  • Save adaptives/1210957 to your computer and use it in GitHub Desktop.

Select an option

Save adaptives/1210957 to your computer and use it in GitHub Desktop.
LPTHW - Exercise 11
#LPTHW Exercise 11
print "How old are you?",
age = raw_input()
print "How tall are you?",
height = raw_input()
print "How much do you weigh?",
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