Answer:
The python statement is:
area= 0.5 * base * height
Explanation:
Given

Required
Write an equivalent python statement
From the question, we understand that the expression be assigned to variable area.
So, the equivalent python statement is:
area= 0.5 * base * height
Where

It can also be written as:
area = base * height / 2
It can also be written as:
area = 1/2 * base * height
All the above statements are equivalent to:
