Saved Bookmarks
| 1. |
Find and write the output of the following python code:def Change(P ,Q=30):P=P+QQ=P-Qprint( P,"#",Q)return (P)R = 150S = 100R = Change(R,S)print(R,"#",S)S = Change(S) |
|
Answer» 250 # 150 250 # 100 130 # 100 |
|