4
사전 목록에 값이 이미 있는지 확인 하시겠습니까?
다음과 같이 Python 사전 목록이 있습니다. a = [ {'main_color': 'red', 'second_color':'blue'}, {'main_color': 'yellow', 'second_color':'green'}, {'main_color': 'yellow', 'second_color':'blue'}, ] 다음과 같이 특정 키 / 값이있는 사전이 이미 목록에 있는지 확인하고 싶습니다. // is a dict with 'main_color'='red' in the list already? // if not: add item
122
python
list
dictionary