Value

    파이썬 dict list 특정 key 로 중복제거

    자주쓰는데 계속 찾기 귀찮아서 씀 dict 특정 key 중복 list({v['id']:v for v in data}.values()) https://sanghaklee.tistory.com/60 [Python] 리스트 딕셔너리 중복 제거 python how to remove duplicate dict in list https://stackoverflow.com/questions/11092511/python-list-of-unique-dictionaries dict 전체 중복 # 순서가 보장되지 않음 list(map(dict, set(tuple(sorted(d.items())) for d in data))) # 순서가 보장 sanghaklee.tistory.com