📜  python代码示例中的cm到m

📅  最后修改于: 2022-03-11 14:45:54.755000             🧑  作者: Mango

代码示例1
# 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 )