Computer Science, asked by medha30, 9 months ago

01. Find the Output of the following python programs:
a)P=5%2
Q=P**4
R=P//Q
P+=P+Q+R
R+=P+Q+R
Q-=P+Q+R
print(P,Q,R)​

Answers

Answered by BRAINLYBOOSTER12
3

P = 2

Q = 8

R = 1/4

(overall output)

Similar questions