Remember when you used to sum, for example 2 & 3, in your old calculator and every time you hit the =
you see 3 added to the total, the +=
does similar job. Example:
>>> orange = 2
>>> orange += 3
>>> print(orange)
5
>>> orange +=3
>>> print(orange)
8