Computer Science, asked by pavantbiju, 6 hours ago

5. Python program to convert Centimeter to Inches.

Answers

Answered by SULTHANASAJI
4

Explanation:

Program 4: Write a Program in Python for converting cm to feet and inches.

# This is a Python program which converts centimeter length to feet and Inches.

centimeter=int(input("Enter the height in centimeters:"))

#convert centimeter to inches.

inches = 0.394 * centimeter.

#convert centimeter to feet

Answered by antrasharma9999
5

Answer:

Hi

Explanation:

your answer is here ..

Attachments:
Similar questions