def DoChange(x, y): x = x.__add__(y) return x x = 1 print(x) print(DoChange(x, 2)) print(x)