PracticeTestGeeks home

Hackerrank - HackerRank Python Certification Hackerrank - HackerRank Python Control Flow and Looping Questions and Answers

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='')

```

Select your answer