Programming Examples
Python program to accept three side of triangle and find its area by using Herons Formula
Write a python program to accept 3 side of triangle and find its area by using Heron’s Formula
where s=(a+b+c)/2
Output
Enter the Side 1 5
Enter the Side 2 4
Enter the Side 3 3
Area of Triangle is : 6.0