본문 바로가기
파이썬

파이썬 개체 목록에 특정 속성 값을 가진 개체가 포함되어 있는지 확인

by º기록 2020. 9. 18.
반응형

내 개체 목록에 특정 속성 값을 가진 개체가 포함되어 있는지 확인하고 싶습니다.

class Test:
    def __init__(self, name):
        self.name = name

# in main()
l = []
l.append(Test("t1"))
l.append(Test("t2"))
l.append(Test("t2"))


[x for x in myList if x.n == 30]               # list of all matches
any(x.n == 30 for x in myList)                 # if there is any matches
[i for i,x in enumerate(myList) if x.n == 30]  # indices of all matches

def first(iterable, default=None):
    for item in iterable:
        return item
    return default

first(x for x in myList if x.n == 30)          # the first match, if any

매번 전체 목록을 살펴보고 싶지는 않습니다. 일치하는 인스턴스가 1 개 있는지 확인하면됩니다. first (...) 또는 any (...) 또는 다른 작업이 수행됩니까?

 

해결 방법

 


any(x.name == "t2" for x in l)

 

참조 페이지 https://stackoverflow.com/questions/9371114

 

 

반응형

댓글