11/22/202012/14/2020 Area of a Triangle Challenge 008 Write a function that takes the base and height of a triangle and return its area. Examples tri_area(3, 2) ➞ 3 tri_area(7, 4) ➞ 14 tri_area(10, 10) ➞ 50 Solution def tri_area(base, height): return base * height / 2