Python
[Python] 리스트 안의 딕셔너리 중복 제거하기
체봄
2021. 10. 1. 19:26
import json
# arr : [{}, {}, {}, ...]
set_of_jsons = {json.dumps(d) for d in arr}
arr = [json.loads(d) for d in set_of_jsons]
반응형