Answers for "area of a right angle triangle in python"

0

area of a right angle triangle in python

h = int(input("Enter the height of the triangle"))
b = int(input("Enter the base of the triangle"))
A = 0.5 * b * h
print("Area is: ", (A))
Posted by: Guest on April-21-2021

Code answers related to "area of a right angle triangle in python"

Python Answers by Framework

Browse Popular Code Answers by Language