假设我有一份清单清单。子列表本身可以包含子列表。将所有子列表的所有元素转换为特定类型的有效方法是什么?
让我们说它像这样凌乱:
a = [
1,
2,
3,
[
"a",
"b"
],
[
10,
20,
[
"hello",
"world"
]
],
4,
5,
"hi",
"there"
]
这个想法是将类似的东西转换成这样:
a = [
"1",
"2",
"3",
[
"a",
"b"
],
[
"10",
"20",
[
"hello",
"world"
]
],
"4",
"5",
"hi",
"there"
]
请注意,我正在寻找处理任意深度子列表的方法。我觉得可以使用生成器,但我不知道如何处理它。
答案 0 :(得分:6)
最简单的方法是递归地执行此操作(您的列表不太可能所以嵌套导致问题):
def to_string(L):
return [ str(item) if not isinstance(item, list) else to_string(item) for item in L ]