Write a Python program to convert height (in feet and inches) to centimeters
I have used python 3.7 compiler for debugging purpose.
print("Input your height: ") h_ft = int(input("Feet: ")) h_inch = int(input("Inches: ")) h_inch += h_ft * 12 h_cm = round(h_inch * 2.54, 1) print("Your height is : %d cm." % h_cm)
Result:
Input your height:
Feet: 5
Inches: 4
Your height is : 162 cm.
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
I have used python 3.7 compiler for debugging purpose.
Result:
Input your height:
Feet: 5
Inches: 4
Your height is : 162 cm.
need an explanation for this answer? contact us directly to get an explanation for this answer