Python Relational Operators
Relational Operators The relational operators are used in python when we try to establish a relation between two operands i.e. make a comparison. Some of the relational operands are: > – Greater than < – Less than >= – Greater than equal to <= – Less than equal to = – Equal to Example: >>>a= …