Immutable? Could you explain this a bit more? (As far as I know, "x += 1" will modify the block of memory that x points to)
>>> a = 1 >>> id(a) 32855992 >>> a += 1 >>> id(a) 32855968
a += 1 is equivalent to a = a + 1
a = 10 b = a a += 20