Answers for "cm to m in python"

0

cm to m in python

# def meter(cm):
    # return (cm *(c/100))

c = int(input("Enter meter to convert in centimeter :"))
print(" The  conversion of meter to centimeter is ",c/100 )
Posted by: Guest on January-11-2022

Python Answers by Framework

Browse Popular Code Answers by Language