Python Comparison Operators Example
These operators compare the values on either sides of them and decide the relation among them. They are also called Relational operators. Example: #!/usr/bin/python a = 21 b = 10 c = 0 if ( a == b ): print “Line 1 – a is equal to b” else: print “Line 1 – … Read more