📜  python面积计算器 - Python代码示例

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

代码示例1
lenght = float(input('input length here'))
height = float(input('input height here'))
total = lenght * height
print(total)