Python
break, continue
11mia
2020. 9. 9. 02:23
i = 0
while True:
i += 1
if i == 10:
break
elif i % 2 == 0:
continue
print(i)
====Result====
1
3
5
7
9