Python Logical Operators
Categories: Python
There are following logical operators supported by Python language. Assume variable a holds 10 and variable b holds 20 then
OperatorDescriptionExample and Logical ANDIf both the operands are true then condition becomes true.(a and b) is true. or Logical ORIf any of the two operands are non-zero then condition becomes true.(a or b) is true. not Logical NOTUsed to reverse the logical state of its operand.Not(a and b) is false.