demo_ref_keyword_break.py:
for i in range(9): if i > 3: break print(i)
➜ begtut>python demo_keyword_break.py
0
1
2
3