Échange de variables
x = 10
y = 11
x, y = y, x
"Swapping by simultaneously creating a tuple and unpacking it"
print(x, y)
OHIOLee
x = 10
y = 11
x, y = y, x
"Swapping by simultaneously creating a tuple and unpacking it"
print(x, y)