Operators in Python
To know the bitwise operation, you can read here. 1 . Arithmetic operators. These operators are used to perform mathematical operations. Operator Name Example + Addition 3 + 2 = 5 – Subtraction 3 – 2 = 1 * Multiplication 3 * 2 = 6 / Division 3 / 2 = 1.5 % Modulus 3 …