Question: please answer using pycharm. thank you Objective Create a python program that determines properties of a triangle Specification: Create a python program triangleStat.py that given


please answer using pycharm. thank you
Objective Create a python program that determines properties of a triangle Specification: Create a python program triangleStat.py that given the lengths of three sides of a triangle, your program should provide answers for each of the following questions: Is it really a triangle? If one side is longer than the sum of the other two sides, then it is not. .Is it a right triangle? That is, does it satisfy the Pythagorearn Theorem? .Is it an equilateral triangle? That is, are all three sides the same? .ls it an isosceles triangle? That is, are two sides the same? (If your program has already determined that the triangle is equilateral, then it should NOT state that it is isosceles.) What is the area of the triangle? Use sqrt(s(s-a)(s-b)(s-c)) where s-1/2*perimeter, a,b,c are the lengths of the three sides. What is the perimeter of the triangle
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
