Computer Science, asked by Anonymous, 2 days ago

Write a python program to convert centimeters to inches. Hint: 1 inch = 2.54 cms .​

Answers

Answered by dhanushreerdins9a
7

Answer:

centi= float(input("Enter the length in centimetres: "))

inch= centi / 2.54

print(centi , " cm in inches is " , inch)

Similar questions