What is the output of the following code snippet?
for i in range(5): if i == 3: continue print(i)
0 1 2 3 4
0 1 2 4
0 1 2
0 1 2 3
This question is part of this quiz :