Predict the output of the following code:
def Swapper (X,Y=5) :
X=X+Y
Y=X-Y
return Y
A=10
B=15
B= Swapper (A,B)
print(A,B, sep = '^')
A= Swapper (A)
print(A,B,sep= '^', end='***')
Answer:
Answer by student
The output of the code is:
10^10
10^10***
Detailed answer by teachoo
The rest of the post is locked. Join Teachoo Black to see the full post.