Question
Write a Python code to check a triangle is valid or not. If it is valid, the result should indicate the type of triangle (equilateral,
Write a Python code to check a triangle is valid or not. If it is valid, the result should indicate the type of triangle (equilateral, isosceles, or scalene)
* The length of a side of a triangle is less than the sum of the lengths of the other two sides and greater than the difference of the lengths of the other two sides
** An equilateral triangle is a triangle in which all three sides are equal.
A scalene triangle is a triangle that has three unequal sides.
An isosceles triangle is a triangle with (at least) two equal sides
Sample Input
Enter the length of first side: 5
Enter the length of second side: 4
Enter the length of third side: 6
Expected Output
The triangle is valid. Scalene Triangle.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started