show/hide this revision's text 3 Fixed style according to PEP-8, also made it look like an interactive session

One line Variable value swapping

>>> a = 10
>>> b = 5
a,b >>> a, b = b,a

b, a

>>> print a
>>>5
5
>>> print b
>>>10
10

a will have the value of b and so on.

This is a side effect of python packing and unpacking feature.

    Post Made Community Wiki by Community
show/hide this revision's text 2 added 9 characters in body

One line Variable value swapping

a = 10
b = 5
a,b = b,a

print a
>>>5
print b
>>>10

a will have the value of b and so on.

This is a side effect of python packing and unpacking feature.

show/hide this revision's text 1