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

9 lines
228 B
Python
Raw Permalink Normal View History

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