Simple assignment operator, Assigns values from item2 (the right side) to item1 (the left side).
Add AND assignment operator, It adds right operand to the left operand and assign the result to left operand.
Add AND assignment operator, It adds right operand to the left operand and assign the result to left operand.
Subtract AND assignment operator, It subtracts right operand from the left operand and assign the result to left operand.
Multiply AND assignment operator, It multiplies right operand with the left operand and assign the result to left operand.
Divide AND assignment operator, It divides left operand with the right operand and assign the result to left operand.
Modulus AND assignment operator, It takes modulus using two operands and assign the result to left operand.
Floor Division and assigns a value, Performs floor division on operators and assign value to the left operand.
Exponent AND assignment operator, Performs exponential (power) calculation on operators and assign value to the left operand.
Binary Left Shift Operator. The left operands value is moved left by the number of bits specified by the right operand and assign the result to left operand.
Binary Right Shift Operator. The left operands value is moved right by the number of bits specified by the right operand and assign the result to left operand.
Binary AND Operator copies a bit to the result if it exists in both operands and assign the result to left operand.
Binary OR Operator copies a bit if it exists in either operand and assign the result to left operand.
Binary XOR Operator copies the bit if it is set in one operand but not both and assign the result to left operand.