1 2 3 4 5 6 7 8 9
def f(): for x in range(1, 2): if x == 1: break def f(): for x in range(1, 2): if x == 1: continue