Python Operators
python operators enable manipulation on variables and value(operands) 1. Arithmetic Operators Operator Description Syntax Example + Addition x + y 1 + 2 = 3 – Subtraction x – y 3 – 1 = 2 * Multiplication x * y 2 * 3 = 6 / Division x / y 6 / 3 = 2.0 …