Source Code:
(back to article)
for i in range(10): if i == 5: break else: print("The loop completed normally")
Result:
Report an issue