You are on page 1of 2

current_year = 2022

name = "Mariella Leyba"


birth_year = "1998"
weight_kilograms = "75"
height_feet = "5.5"

print("Enter your name: " + name )


print("Enter your birth year: " + birth_year )
print("Enter your weight in kilograms: " + weight_kilograms )
print("Enter your height in feet: " + height_feet )

birth_yr= 1998
age= current_year - birth_yr

weight_kg= 75
height_ft= 5.5
weight= weight_kg * 2.2046226218488
height= height_ft * 30.48
greet="Good day"

print(greet + ", " + name + " ! " + "You are", age, "years old" + '.')
print("Your weight is", weight, "lb " + "and " + "your height is", height, ".")
current_year = "2020"
name = "Mariella Leyba"
birth_year = "1998"
weight_kilograms = "75"
height_feet = "5.5"
print("Enter your name: " + name )
print("Enter your birth year: " + birth_year )
print("Enter your weight in kilograms: " + weight_kilograms )
print("Enter your height in feet: " + height_feet )

current_yr= 2022
birth_yr= 1998
age= current_yr - birth_yr
print(age)

weight_kg= 75
height_ft= 5.5
weight= weight_kg * 2.2046226218488
print(weight)
height= height_ft * 30.48
print(height)

You might also like