Using the computer language in python to write a function code that calculates the area of a rectangle.
def rectangle_area(base, height):
z = base*height # the area is base*height
print("The area is " + str(z))
rectangle_area(5,6)
See more about python at brainly.com/question/18502436
#SPJ1