How can I swap two numeric variables without unpacking or define a new variable in python? I mean not this way:
a, b = b, a
and not this way:
c = a a = b b = c
You can do it this way:
a = a + b b = a - b a = a - b