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 | 31 |
Tags
- 백준
- 프로그래머스
- Python
- 알고리즘
- reinforcement learning
- 논문
- object detection
- coding test
- 모두를 위한 딥러닝
- computer vision
- 내용추가
Archives
- Today
- Total
NISSO
[Python] 리스트로 True / False 출력 본문
리스트 자체로 True / False 결과를 출력할 수 있다.
def list_boolen(lst):
if lst:
print(True)
else:
print(False)
list_boolen([1,2])
list_boolen([])
답은 True, False
while 반복문에선 아래와 같이 활용할 수 있다.
i = 1
a = [1,2,3,4]
while a:
print(i)
i += 1
a.pop(0)
이렇게 하면 1,2,3,4까지 나오고 멈춘다.
a.pop(0)을 안 해주면 무한히 실행된다.
+ 문자열도 가능하다.
''는 False. ' '는 True
'Python' 카테고리의 다른 글
[Python] os 모듈의 유용한 함수 정리 (0) | 2021.12.15 |
---|---|
[Python] 코드 실행 시간 측정 (0) | 2021.11.26 |
[Python] sort()와 sorted() 차이 (0) | 2021.06.26 |
Comments