Question: tri _ base and tri _ height are read from input as floating - point values, representing the base and height of a triangle. Compute

tri_base and tri_height are read from input as floating-point values, representing the base and height of a triangle. Compute the triangle's area as (tri_base*tri_height)/2. Use f-string's = sign feature within the provided curly brackets as the replacement field to output both the expression and result.
Click here for example
Ex: If the input is:
5.0
8.0
then the output is:
(tri_base*tri_height)/2=20.0
Note: print(f'{2*4=}') outputs the string "2*4=8" using f-string's = sign feature.
What is the code?
Thank you! (tri_base*tri_height)?2=20.0
Note: print (f'{2*4=}') outputs the string "2*4=8" using f-string's = sign feature.
tri_base = float(input())
tri_height = float(input())
print(f'{''' Your code goes here '''}')
tri _ base and tri _ height are read from input

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!