

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the followingPython code snippet?a = [0, 1, 2, 3]for a[0] in a:print(a[0]) |
A. | 0 1 2 3 |
B. | 0 1 2 2 |
C. | 3 3 3 3 |
D. | error |
Answer» B. 0 1 2 2 | |