Yasir Bhutta
|
Loop Control Statements
0/9
30:00
Exit
Question 1
Flag
1/9
What is the output of the following code snippet?
Python
Copy
for i in range(5): if i == 3: continue print(i)
A
0 1 2 3
B
0 1 2 4
C
SyntaxError: invalid syntax
D
IndentationError: expected an indented block
Need a hint? View Explanation