MINDWAREZONE
Assignment operators are used to assign values to variables.
x = 10 x += 5 print(x)
Output:
15