What is the output of the following code?
p.9.r = 10,20,30
print{p.4.1)
W
10 20
10 20 30
10,20,30
The program failed with errors
Answers
Answered by
0
Step-by-step explanation:
Predict the output of the following codes : a, b, c, = 10, 20, 30 p, q, r=c-5, a+3, b-4 print (a, b, c:', a, b, c, end=' ') print ('p,q,r:', p, q,r). 2.
Similar questions