PracticeTestGeeks home

(PCEP) Certified Entry-Level Python Programmer FREE PCEP Using the `else` block in loops Questions and Answers

What is the output of the following code?
```python

for i in range(3):

print(i)

else:

print('Done!')

```

Select your answer