Guest User

Untitled

a guest
Jul 23rd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. print "How old are you?",
  2. age = raw_input()
  3. print "How tall are you?",
  4. height = raw_input()
  5. print "How much do you weigh?",
  6. weight = raw_input()
  7.  
  8. print "So, you're %r old, %r tall and %r heavy." % (
  9. age, height, weight)
Add Comment
Please, Sign In to add comment