728x90
반응형
python에서 다음은 False
에 해당한다
bool False
object None
int 0
str ""
list []
duple ()
dict {}
>>> this_false = None or 0 or '' or [] or () or {} or False
>>> this_false
False
728x90
728x90
BIG
'Programming > Python' 카테고리의 다른 글
filter(), map() (0) | 2020.10.05 |
---|---|
generator, iterator, yield (0) | 2020.09.30 |
input(), sys.stdin - 코딩테스트 시 입력받기 (0) | 2020.09.24 |
byte-compiled code - python (0) | 2020.09.22 |
package - 패키지 (0) | 2020.09.21 |
댓글