📅  最后修改于: 2022-03-11 14:46:47.242000             🧑  作者: Mango
def AreaofRectangle(width, height):
Area = width * height
print("Area of a Rectangle is: %.2f" %Area)
AreaofRectangle(8, 6)