jm_p_op
.py Truthy&Falsy (if type) 본문
import numpy as np
false_list = ['', "", [], {}, 0, (), set(), range(0), np.array([0]),None]
true_list = ["null", " ", ' ', "asdf"]
i = 0
for test in a:
if test:
print("true")
print(i)
print(test)
else:
print("false")
print(i)
i += 1
int같은 경우는 0제외하고 truthy 값이다.
'py' 카테고리의 다른 글
.py 실험실 공간할당(list붙이기) (0) | 2023.05.06 |
---|---|
.py dictionary , sorted (0) | 2023.04.21 |
.py try문과 class-object와 funtion 사이에 일어나는 일(실험실) (0) | 2023.04.04 |
.py dictionary를 class에 넣기 , ** 언어 (0) | 2023.04.03 |
.py class와 dictionary 불러오는 방식 (0) | 2023.04.03 |