在嵌套列表Python中删除具有相同元素的重复元组

时间:2014-11-02 18:13:51

标签: python-2.7 duplicates

我有一个元组列表,我需要删除包含相同元素的元组。

d = [(1,0),(2,3),(3,2),(0,1)]

OutputRequired = [(1,0),(2,3)]输出顺序无关紧要

命令set()没有按预期工作。

1 个答案:

答案 0 :(得分:3)

在此解决方案中,我在检查temp中是否已存在后,将每个元组复制到temp,然后复制回d

d = [(1,0),(2,3),(3,2),(0,1)]
temp = []
for a,b in d :
    if (a,b) not in temp and (b,a) not in temp: #to check for the duplicate tuples
        temp.append((a,b))
d = temp * 1 #copy temp to d

这将按预期输出。