If you want to write a function that swaps the values of two variables, you
must pass them by
Answers
Answered by
0
def func(a,b):
b,a = a,b
a = int(input())
b = int(input())
func(a,b)
Similar questions