PracticeTestGeeks home

(PCEP) Certified Entry-Level Python Programmer FREE PCEP Controlling loop execution Questions and Answers

What will be the output of the following code snippet?
```python

for i in range(5):

if i == 3:

break

print(i, end=' ')

```

Select your answer