我有一个元组列表,我需要删除包含相同元素的元组。
d = [(1,0),(2,3),(3,2),(0,1)]
OutputRequired = [(1,0),(2,3)]输出顺序无关紧要
命令set()没有按预期工作。
答案 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
这将按预期输出。