📜  使用函数计算矩形面积的 Python 程序 - Python 代码示例

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

代码示例1
def AreaofRectangle(width, height):
    Area = width * height
    print("Area of a Rectangle is: %.2f" %Area)
AreaofRectangle(8, 6)