WAP in python to input 3 sides of a triangle find out it's area and perimeter
Answers
Answered by
1
Answer:
If a , b and c are three sides of a triangle. Then, s = (a+b+c)/2 area = √(s( s-a)*(s-b)*(s-c)). Source Code. # Python Program to find the area of triangle a = 5 b = 6 c = 7 # Uncomment below to take inputs from the user # a ...
Missing: it's | Must include: it's
Similar questions