Skip to content

Instantly share code, notes, and snippets.

@akreer135
Last active December 23, 2015 23:09
Show Gist options
  • Save akreer135/6707712 to your computer and use it in GitHub Desktop.
Save akreer135/6707712 to your computer and use it in GitHub Desktop.
questions and raw input part 2
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