demo_ref_keyword_break.py:
for i in range(9): if i > 3: break print(i)
C:\Users\My Name>python demo_keyword_break.py
0
1
2
3