3 lines
32 B
Python
3 lines
32 B
Python
|
|
def swap(a, b):
|
||
|
|
return b, a
|