(PCEP) Certified Entry-Level Python Programmer Practice Test
(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
A
0 1 2 3 4
B
0 1 2
C
0 1 2 4
D
3
Hint