Python - Operators

In Python, Operators are the special symbols that performs some calculations. The value that the operator operates on is called the operand. For example: 2+3. Here, + is the operator that performs addition. 2 and 3 are the operands.

Arithmetic + , - , / , * , // , % , **
Assignment = , += , -= , *= , /=
Relational > , < , == , <= , >= , !=
Logical and , or , not