Computer Science, asked by madhupradee, 3 months ago

Predict the output :

a = [1,2,3,4,5]

2

for i in range(1,5) :

a[i-1] = a[i]

for i in range(0,5) :

print(a[i] , end = “”)​

Answers

Answered by tiwaririya632
0

Answer:

can I ask what I do this question

Answered by mishraabhi8924
1

Explanation:

23455 is output.

I hope it will helpful for you.

this is python code.

and if end=" "

then 2 3 4 5 5

Similar questions