📜  矩形的python区域 - 任何代码示例

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

代码示例3
l = float(input('Enter the length of a Rectangle: '))
b = float(input('Enter the breadth of a Rectangle: '))
Area = l * b
print("Area of a Rectangle is: %.2f" %Area)