12 x = 73 x + 12 x += 52 #using += is the same as writing out x = x + 52
Python interpreter doesn't return a value on assignments, only expressions
12 x = 73 x + 12 x += 52 #using += is the same as writing out x = x + 52
Python interpreter doesn't return a value on assignments, only expressions