summaryrefslogtreecommitdiff
path: root/progs/a620.py
blob: 0e4513a9d591c78cd41cba3dfa913af1203c6c2d (plain)
1
2
3
4
5
def swap_numbers(a,b):
 temp = a
 a = b
 b = temp
 return (a,b)