Practice Test Geeks home

Python Control Flow: Loops 5

What is the output of:
```

for i in range(1, 6):

if i % 2 == 0:

continue

print(i, end=' ')

```

Select your answer