Python support _____ types of relational operator
Answers
Answered by
2
Python supports 6 operators they are listed below:-
- Equal to Checks whether two operands are equal.
- Not equal to Checks whether two operands are not equal.
- Greater than Checks whether the left side operand is greater than the right side operand.
- Less than Checks whether the left side operand is less than the right side operand.
- Greater than or equal to Checks whether the left side operand is either greater or equal to the right side operand.
- Lesser than or equal to Checks whether the left side operand is either less than or equal to the right side operand.
Similar questions