Advertisement
Guest User

py12.py

a guest
Aug 25th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. age = input("How old are you?\n")
  2. height = input("How tall are you?")
  3. weight = input("How much do you weight?")
  4. print("So, you're %r old, %s tall and %r heavy." % (age, height, weight))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement