Advertisements
Advertisements
प्रश्न
Predict the output of the following code:
def Changer (P, Q=10):
P=P/Q
Q=P%Q
return P
A=200
B=20
A=Changer(A,B)
print(A,B,sep='$')
B=Changer(B)
print(A,B sep='$', end='# # #')एका वाक्यात उत्तर
Advertisements
उत्तर
10.0$20
10.0$2.0###shaalaa.com
Arguments and Parameters
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
