ungleich-learning-circle/youngjin.han/python-the-hard-way/ex12.py

6 lines
179 B
Python

age = input("How old are you? ")
height = input("How tall are you? ")
weight = input("How much do you weigh? ")
print(f"So, you're {age} old, {height} tall and {weight} heavy.")