Question: 
Write a python function to find the volume of a triangular prism.


Model's Code:
def find_Volume(base, height, length):
    return (base * height / 2) * length



Sample Correct Code:
def find_Volume(l,b,h) : 
    return ((l * b * h) / 2) 


Asserts:
assert find_Volume(10,8,6) == 240
assert find_Volume(3,2,2) == 6
assert find_Volume(1,2,1) == 1


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 14 of 974: 10/14 (71.42857142857143%): success