Untitled
unknown
plain_text
9 months ago
288 B
17
Indexable
# Centimeter to Meter and Feet to Inch Converter
# Taking input from user
cm = float(input("Enter length in centimeter: "))
ft = float(input("Enter length in feet: "))
# Conversion
meter = cm / 100
inch = ft * 12
# Output
print("Length in meter:", meter)
print("Length in inch:", inch)Editor is loading...
Leave a Comment