find the output
def Alter(P=15,Q=10):
P=P*Q
Q=P/Q
Print(P,"#",Q)
return Q
A=100
B=200
A=Alter(A,B)
Print(A,"$",B)
B=Alter(B)
Print(A, "$",B)
A=Alter(A)
Print(A,"$",B)
Answers
Answered by
5
150#1.5
15$10
15$15
10$15
hope it maybe correct
Answered by
5
Answer:
20000 # 100.0
100.0 $ 200
2000 # 200.0
100.0 $ 200.0
1000.0 # 100.0
100.0 $ 200.0
Similar questions
Math,
5 months ago
Social Sciences,
5 months ago
Business Studies,
10 months ago
Science,
1 year ago