如何将嵌套的列表列表转换为python 3.3中的元组列表?

我试图将嵌套的列表列表转换为Python 3.3中的元组列表.但是,似乎我没有这样做的逻辑.

输入如下:

>>> nested_lst = [['tom', 'cat'], ['jerry', 'mouse'], ['spark', 'dog']]

所需的输出应如下所示:

nested_lst_of_tuples = [('tom', 'cat'), ('jerry', 'mouse'), ('spark', 'dog')]

解决方法:

只需使用列表理解:

nested_lst_of_tuples = [tuple(l) for l in nested_lst]

演示:

>>> nested_lst = [['tom', 'cat'], ['jerry', 'mouse'], ['spark', 'dog']]
>>> [tuple(l) for l in nested_lst]
[('tom', 'cat'), ('jerry', 'mouse'), ('spark', 'dog')]
上一篇:python – 将元组列表转换为dict


下一篇:C#调用C++DLL传递结构体数组的终极解决方案