Source Code:
(back to article)
num = 0 while num < 10: if num == 5: break print(num) num += 1
Result:
Report an issue