Python Question How Python works in memory, if code is "a,b = b, a"
a = 1
b = 2
a, b = b, a
print(a, b)
# 2, 1
i search on internet but i don't find the solution
Python Question How Python works in memory, if code is "a,b = b, a"
a = 1
b = 2
a, b = b, a
print(a, b)
# 2, 1
i search on internet but i don't find the solution