notas-tsfc/suma_unch.py

9 lines
101 B
Python
Raw Normal View History

2023-02-22 00:07:05 +01:00
def DoChange(x, y):
x = x.__add__(y)
return x
x = 1
print(x)
print(DoChange(x, 2))
print(x)