Skip to content

Instantly share code, notes, and snippets.

@akreer135
Created September 25, 2013 23:25
Show Gist options
  • Save akreer135/6707661 to your computer and use it in GitHub Desktop.
Save akreer135/6707661 to your computer and use it in GitHub Desktop.
asking questions and raw input.
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