Discussion :: Python MCQs
-
What is the output of the following?a = [0, 1, 2, 3]for a[0] in a:print(a[0])
Answer : Option A
Explanation :
The value of a[0] changes in each iteration. Since the first value that it takes is itself, there is no visible error in the current example.
Be The First To Comment