📌  相关文章
📜  python代码示例中的米到厘米

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

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