Refer the following code and predict the output
a=[10,20,30]
b=[14,15,16]
c=a+b
d=c[1:3]
e=d
a[0]=100
c[3]=120
e[4]=230
(i) print(a[0]) (ii) print (b[1]) (iii) print(d) (iv) print (c[:])
Answers
Answered by
0
Answer:
what's this,I am not knowing about anything
Similar questions