7.2.4 area of triangle
what am i doing wrong please help!!!!

The code to compute the area of a triangle while given the height and the base is as follows:
def triangleArea(BASE, HEIGHT):
return 1/2 * BASE * HEIGHT
print(triangleArea(2, 4))
The code is written in python.
learn more on python code here: https://brainly.com/question/23460180