Thief of Wealth
Published 2019. 5. 24. 10:04
python set없이 중복제거 개발/Python

원래 set을 사용하면, 중복없게 할 수 있으나,


순서가 유지되지 않는다는 단점이 있다.



순서를 유지하고 싶으면서, iterable한 자료형에서 중복제거를 하고 싶다면


from collections import OrderedDict

list2 = ['1','2','3','4','5']

print( list(OrderedDict.fromkeys(list2)) )

출처:https://pwnbit.kr/87

profile on loading

Loading...