Computer Science, asked by ajaypahwa12851, 8 months ago

If you want to write a function that swaps the values of two variables, you
must pass them by

Answers

Answered by Kaushikkalesh
0

def func(a,b):

b,a = a,b

a = int(input())

b = int(input())

func(a,b)

Similar questions