2017年12月29日 星期五

Python - 清單刪除重複元素,保留原清單排序的作法 - How to remove all duplicate items from a list

版本:

System version : Windows 10  64-bit
Python version : Python 3.6.0 :: Anaconda 4.3.1 (64-bit)
list1=[1,2,4,3,1,2]
list1_remove_duplicate = sorted(set(list1),key=list1.index)
print(list1_remove_duplicate)

執行結果

[1, 2, 4, 3]

沒有留言:

張貼留言