python the hard way ex upto ex13

This commit is contained in:
samialazar 2020-05-19 16:28:33 +02:00
commit ed8222535a
7 changed files with 68 additions and 0 deletions

View file

@ -0,0 +1,6 @@
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.")