Report Bug
Qus :

What will be the output of the following Python code snippet?

a = [0, 1, 2, 3]
for a[-1] in a:
    print(a[-1])

Qus

निम्नलिखित Python कोड स्निपेट का आउटपुट क्या होगा?

a = [0, 1, 2, 3]
for a[-1] in a:
    print(a[-1])


A. 0 1 2 3
B. 0 1 2 2
C. 3 3 3 3
D. error


Solution
B. 0 1 2 2



Explanation
The value of a[-1] changes in each iteration.



Report Bug