我想重新編譯下面的列表,但也要保留重複列表以顯示在下面的屏幕上。這是從一個CSV文件中去掉,所以它會是巨大的,顯示的內容已添加和未添加什麼用戶「受騙者」等Django - 重複列表並保留重複文件
[
['first_name', 'last_name', 'email'],
['Danny', 'Lastnme', '[email protected]'],
['Sally', 'Surname', '[email protected]'],
['Sally', 'Surname', '[email protected]'], < -- Dupe
['Sally', 'Surname', '[email protected]'], < -- Dupe
['Chris', 'Lastnam', '[email protected]'],
['Larry', 'Seconds', '[email protected]'],
['Barry', 'Barrins', '[email protected]'],
['Glenn', 'Melting', '[email protected]'],
['Glenn', 'Melting', '[email protected]'], < -- Dupe
]
最終的結果將產生兩個列表,其中一個很不錯的結果,另一個是重複列表。
獨特之處:
[
['first_name', 'last_name', 'email'],
['Danny', 'Lastnme', '[email protected]'],
['Sally', 'Surname', '[email protected]'],
['Chris', 'Lastnam', '[email protected]'],
['Larry', 'Seconds', '[email protected]'],
['Barry', 'Barrins', '[email protected]'],
['Glenn', 'Melting', '[email protected]'],
]
愚弄:
[
['Sally', 'Surname', '[email protected]'],
['Sally', 'Surname', '[email protected]'],
['Glenn', 'Melting', '[email protected]'],
]
您是否需要保留這些信息有多少,或足以說出「薩利姓氏被多次發現」? –
@TimPietzcker剛剛更新了問題。什麼是完美的方法來取回一個獨特的列表和欺騙列表,ala:'{'unique':[],'dupes':[]}乾杯。 –