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
- Up Casting
- parameter group
- 판다스
- Stream
- 파이참
- Python
- down casting
- 스트림
- pandas
- singletone
- Java
- 파이썬
- 얕은 복사
- generic programming
- pycharm
- Inbound
- identityHashCode
- Aice
- 셔뱅
- ai능력시험
- 자바
- dbeaver
- access modifier
- extends
- arraycopy
- public static final
- 넘파이
- 엔드포인트
- has-a
- aice associate
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