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

7 lines
203 B
Python

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