Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save adaptives/1210979 to your computer and use it in GitHub Desktop.
LPTHW - Exercise 12
#LPTHW Exercise 12
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