Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | |
7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 | 30 |
Tags
- Stream
- Aice
- 자바
- access modifier
- Up Casting
- singletone
- 스트림
- 파이썬
- has-a
- generic programming
- 셔뱅
- Python
- Java
- pandas
- extends
- parameter group
- ai능력시험
- public static final
- Inbound
- 판다스
- arraycopy
- aice associate
- identityHashCode
- 엔드포인트
- down casting
- 넘파이
- dbeaver
- 파이참
- pycharm
- 얕은 복사
Archives
- Today
- Total
٩(๑•̀o•́๑)و
break, continue 본문
i = 0
while True:
i += 1
if i == 10:
break
elif i % 2 == 0:
continue
print(i)
====Result====
1
3
5
7
9