-
-
Save jacortinas/845976 to your computer and use it in GitHub Desktop.
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
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