Practice Test Geeks home

PCEP Using the `else` block in loops 2

What output does the following code produce?
for i in range(3):

if i == 5:

break

else:

print('done')

Select your answer