Computer Science, asked by rmanojdivya000, 10 months ago

What will be the output generated by the following snippet?


a=[5,10,15,20,25]

k=1

i=a[l]+1

j=a[2]+1

m=a[k+1]

print(i,j,m)

waiting for early replies guys....​

Answers

Answered by mahimaravi1813
13

Answer:

5,10,15,20,25,[l]+1,5,10,15,20,25[2]+1,5,10,15,20,25[k+1]

Similar questions