Computer Science, asked by AdityaNachan, 4 months ago

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 VISHALKUMARV220
8

This the output of your python code^^

Attachments:
Answered by VISHALKUMARV22
9

Answer:

ERROR!!!!!!!!!

Similar questions