Answers for "meter to cm in python"

0

meter to cm in python

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

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

Python Answers by Framework

Browse Popular Code Answers by Language