COMPARISON, LOGICAL, ASSIGNMENT AND BITWISE OPERATORS In this blog we will see about Arithmetic operators and understand how to use it with Python IDLE to perform certain calculations. PYTHON COMPARISON OPERATORS OPERATOR DESCRIPTION EXAMPLE == Checks whether LHS is equal to RHS, then the condition becomes true 10==10 is true != Checks whether LHS is not equal to RHS, then the condition becomes true 2!=3 is true > Checks whether LHS is greater than RHS, then the condition becomes true 6>3 is true < Checks whether LHS is less than RHS, then the condition becomes true 6<10 is true >= Checks whether LHS is gre...