Find and write the output of the following python code: defense changer(P,Q=10): P=P/Q Q=P%Q Print P, "#",Q return P A=200 B=20 A=Changer(A,B) print A, "$",B B=Changer(B) print A, "$",B A=Changer(A) print A, "$",B
Answers
Answered by
13
Answer:
250 # 150
250 # 100
130 # 100
Answered by
13
Answer:
This is wrong answer. Ridiculous
Attachments:
Similar questions