1 2 3 4 5 6 7 8 9 10 11 12 13
# i = 0 # while i < 5: # i += 1 # # print(i) # assert i == 5 i = 0 while i < 5: i += 1 # print(i) if i == 3: break assert i == 3