Predict the output of the following code?
>>>P,Q,R,S=5,6,7,8
>>>P,Q,R,S=S,R,Q,P
>>>P,Q,R,S=(S*2),(R*R),Q+1,P-1
>>>print(P,Q,R,S)
Answers
Answered by
0
Answer:
9,10,11,12,16,14,15
Similar questions