Python Program to Convert Centimeters to Feet and Inches
cm=int(input("Enter the height in centimeters:"))
inches=0.394*cm
feet=0.0328*cm
print("The length in inches",round(inches,2))
print("The length in feet",round(feet,2))
Output
Enter the height in centimeters:50
The length in inches 19.7
The length in feet 1.64
