Area of Triangle problem

bottom_length = int(input("Input the bottom_length for triangle : "))

Height = int(input("Input the height for triangle : "))

Area_of_Triangle = bottom_length*Height/2

print("Area of Triangle = ",Area_of_Triangle)

2 Likes

@thaseenraza1210

correct, keep it up.
Keep Practicing

2 Likes

good going @thaseenraza1210

2 Likes