mètre à cm en 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 )
Coding boy Hasya