Python Course
Python Course
2.Relational/Comparison Operators
The relational operators give the relation between the two given operands.
The outcome of relational operators is a Boolean value.
< Less than 1<3= true
<= Less than or equal to 1<=3=true
> Greater than 1>3=false
>= Greater than or equal to 1>=3=false
== Equal to 7==4=false