pass
1. 조건문에서 넣어줄 조건이 딱히 없을 경우
2. class 선언할 때, 초기에 넣어줄 값이 없을 때
for i in range(10):
if i % 2 == 0:
pass
print(i)
else:
print(i)
print("Done")
0
1
2
3
4
5
6
7
8
9
Done
continue
다음 loop를 실행한다
for i in range(10):
if i % 2 == 0:
continue
print(i)
print(i)
print("Done")
1
3
5
7
9
Done
break
반복문을 멈추고 밖으로 탈출하게 된다
for i in range(10):
if i % 2 == 0:
break
print(i)
else:
print(i)
print("Done")
Done
'프로그래밍 언어 > Python' 카테고리의 다른 글
[Python] 문자열 관련 함수 총 정리 (0) | 2024.06.14 |
---|---|
[Python] f-string (문자열) (0) | 2024.03.21 |
[Python] 난수 random 모듈 (0) | 2024.03.04 |
[Python] math 모듈 (0) | 2024.03.04 |
[Python] for문 활용법 (0) | 2024.02.29 |