CBSE Class 11 Informatics Practices
Question 87 of 102
Python Programming Fundamentals — Question 48
Back to all questions 48
Question Write a program to find the area of a triangle.
h = float(input("Enter height of the triangle: "))
b = float(input("Enter base of the triangle: "))
area = 0.5 * b * h
print("Area of triangle = ", area)Enter height of the triangle: 2.5
Enter base of the triangle: 5
Area of triangle = 6.25