我需要使用set(myList)
,但这是不可能的,因为我有一个列表列表。 (它给出了一个不可出错的错误)。
所以我决定将列表中的每个元素转换为元组。列表或多或少是这样的:
MyList[elem1, elem2, [nested1, nested2, [veryNested1, veryNested2]]]
如何快速将所有内容转换为元组然后返回列表?
答案 0 :(得分:3)
使用递归
MyList = ['elem1', 'elem2', ['nested1', 'nested2', ['veryNested1', 'veryNested2']]]
print MyList
def tupconv(lst):
tuplst = []
for x in lst:
if isinstance(x, list):
tuplst.append(tupconv(x))
else:
tuplst.append(x)
return tuple(tuplst)
def listconv(tup):
lst = []
for x in tup:
if isinstance(x, tuple):
lst.append(listconv(x))
else:
lst.append(x)
return lst
mytup = tupconv(MyList)
print mytup
mylist = listconv(mytup)
print mylist
答案 1 :(得分:1)
这应该这样做:
def lol_to_tuple(lol):
return tuple(el if type(el) is not list
else lol_to_tuple(el)
for el in lol)
要返回,只需用列表替换元组:
def tuples_to_lol(tuples):
return list(el if type(el) is not tuple
else tuples_to_lol(el)
for el in tuples)
答案 2 :(得分:0)
话虽如此,我认为最好不要问你是否以这种格式获得了名单,或者你是否通过某种程序将其列为了这样的名单?这可能有助于我们避免一些不必要的抨击。
答案 3 :(得分:0)
您可以使用以下内容展平您的列表:
In [1]: from compiler.ast import flatten
In [2]: flatten([1, 2, [11, 12, [21, 22]]])
Out[2]: [1, 2, 11, 12, 21, 22]
然后使用set(myList)