6 lines
181 B
Python
Raw Normal View History

2021-04-19 17:06:12 +00:00
age = input("How old are you? ")
2021-04-19 20:24:26 +00:00
height = input("How tall are you? ")
weight = input("How much do you weight? ")
2021-04-19 17:06:12 +00:00
print(f"So, you're {age} old, {height} tall, and {weight} heavy/")