Program Python do obliczenia obszaru prostokąta za pomocą funkcji
def AreaofRectangle(width, height):
Area = width * height
print("Area of a Rectangle is: %.2f" %Area)
AreaofRectangle(8, 6)
Beautiful Bat