ungleich-learning-circle/kjg/python-the-hard-way/e12.py

6 lines
180 B
Python
Raw Normal View History

2020-05-20 13:12:47 +00:00
age = input("How old are you? ")
height = input("How tall are you? ")
weight = input("How much do you weight? ")
print(f"So, you're {age} old, {height} tall and {weight} heavy.")