jm_p_op

.py Truthy&Falsy (if type) 본문

py

.py Truthy&Falsy (if type)

jm_p_op 2023. 4. 5. 22:49
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 값이다.