ungleich-learning-circle/sami/learn-python-the-hard-way/ex11.py

9 lines
234 B
Python

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