Write a program to find and print the area of a triangle, whose hight and width are given.
Topic: Write a program to find and print the area of a triangle, whose hight and width are given.
Solution
h = 12 w = 11 area = 0.5*h*w print(area)
List all Python Programs