から値により、重複項目を削除します。私は、次の辞書を持っている辞書
potential_duplicates = {
432L: (u'one two three', u'one two three'),
433L: (u'one two three', u'one two three'),
434L: (u'whole foods', u'whole foods'),
435L: (u'whole foods', u'whole foods'),
437L: (u'this is a dupe', u'this is a dupe'),
438L: (u'this is a dupe', u'this is a dupe'),
439L: (u'this is a dupe', u'this is a dupe')
}
は基本的に私は私のデータベース内の項目の重複したエントリを削除していますので、基本的に私はこれらの少なくとも一つを維持したいですここで削除しなければならない重複のリストに他のものを投げる。
私はこの構造で行うことができますか、代わりにリストを使用する必要がありますか?
を保持され、重複のどの重要ですか? –
これはあなたのデータベースを処理させるべきもののようです。 – user2357112
@ MarkRansomいいえ、それはありません。 –