Files
2020-09-13 06:58:57 +09:00

14 lines
146 B
Python

# 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