Find and write the output of following python code:
def Alter(M,N=50):
M = M + N
N = M - N
print(M,"@",N)
return M
A=200
B=100
A = Alter(A,B)
print(A,"#",B)
B = Alter(B)ķ
Answers
Answered by
8
This the output of your python code^^
Attachments:
Answered by
9
Answer:
ERROR!!!!!!!!!
Similar questions