Westonci.ca is your go-to source for answers, with a community ready to provide accurate and timely information. Get detailed and accurate answers to your questions from a community of experts on our comprehensive Q&A platform. Join our platform to connect with experts ready to provide precise answers to your questions in different areas.

Define a function calc_pyramid_volume() with parameters base_length, base_width, and pyramid_height, that returns the volume of a pyramid with a rectangular base calc_pyramid_volume() calls the given calc_base_area() function in the calculation. Relevant geometry equations Volume = base area x height x 1/3 (Watch out for integer division) Sample output with inputs: 4.52.13.0 Volume for 4.5, 2.1, 3.0 is: 9.45 1 def calc_base_area(base_length, base_width): 2 return base length base width 3 4 5 6 length float (input()) 7 width float(input)) 8 height float (input()) 9 print('Volume for, length, width, height, "is:", calc_pyramid_volume(length, width, height)))