Guest User

Untitled

a guest
Oct 18th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. age = raw_input("How old are you? ")
  2. height = raw_input("How tall are you? ")
  3. weight = raw_input("How much do you weight? ")
  4.  
  5. print "So, you're %r years old, %r tall, and %r heavy." % (
  6. age, height, weight)
Add Comment
Please, Sign In to add comment