Question: PYTHON Write a program that accepts the lengths of three sides of a triangle as inputs. The program output should indicate whether or not the
PYTHON Write a program that accepts the lengths of three sides of a triangle as inputs. The program output should indicate whether or not the triangle is an equilateral triangle. the grading is based on these : REQUIREMENTS Equilateral Triangle Test 0.00 / 10.00 Obtuse Triangle Test 0.00 / 10.00 Acute Triangle Test 0.00 / 10.00 the closest answer so far is
print("Input lengths of the triangle sides: ")
x = int(input("x: "))
y = int(input("y: "))
z = int(input("z: "))
if x == y == z:
print("Equilateral triangle")
else:
print("Not Equilateral triangle")
but its only 66% of the correct answer please try your best this is for PYTHON
this is what I got n grading:
REQUIREMENTS
| Equilateral Triangle Test | 0.00 / 10.00 |
| Obtuse Triangle Test | 10.00 / 10.00 |
| Acute Triangle Test | 10.00 / 10.00 |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
