Hackerrank - HackerRank Python Control Flow and Looping Questions and Answers
Free · Instant Results
What is the output of the following Python code snippet?
```python
for i in range(5):
if i == 3:
continue
print(i, end=' ')
else:
print('Loop finished', end='')
```