What is wrong?

Sign in to test your solution.
def area_of_triangle( bottom, height ): area = 0.5 * bottom * height print( "The area of a triangle with a bottom of", bottom, "and a height of", height, "is", area )

  Python sandbox

This window allows you to run Python code without installing a thing. The code you write here is not automatically submitted to Dodona.

Test case being debugged