Created
September 12, 2011 10:06
-
-
Save adaptives/1210957 to your computer and use it in GitHub Desktop.
LPTHW - Exercise 11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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