针对下面的set,给定一个list,对list中的每一个元素,如果在set中,就将其删除,如果不在set中,就添加进去。
s = (['Adam','Paul'])
L = ['Adam','Lisa','Bart','Paul']
for x in L:
if x in s:
s.remove(x)
else:
s.add(x)
print s
为什么运行上面的代码一直报错误,求指教
s = (['Adam','Paul'])
L = ['Adam','Lisa','Bart','Paul']
for x in L:
if x in s:
s.remove(x)
else:
s.add(x)
print s
为什么运行上面的代码一直报错误,求指教
2016-03-13
举报