Programme Python pour calculer la zone d'un rectangle à l'aide de la fonction

def AreaofRectangle(width, height):
    Area = width * height
    print("Area of a Rectangle is: %.2f" %Area)
AreaofRectangle(8, 6)
Beautiful Bat