Multiplication and addition operators are examples of binaryoperators. They are used with two operands.>>> 3 * 39>>> 3 + 36Python assignment operatorThe assignment operator=assigns a value to a variable. Inmathematics, the=operator has a different meaning. In anequation, the=operator is an equality operator. The left side ofthe equation is equal to the right one.>>> x = 1>>> x1Here we assign a number to anxvariable.>>> x = x + 1>>> x2The previous expression does not make sense in mathematics. Butit is legal in programming. The expression means that we add 1 tothexvariable. The right side is equal to 2 and 2 is assigned tox.>>> a = b = c = 4>>> print(a, b, c)4 4 4It is possible to assign a value to multiple variables.>>> 3 = yFile "<stdin>", line 1SyntaxError: can't assign to literalThis code example results in syntax error. We cannot assign avalue to a literal.Python arithmetic operatorsThe following is a table of arithmetic operators in Pythonprogramming language.