我有一个字符串列表列表,例如:
example = [["string 1", "a\r\ntest string:"],["string 1", "test 2: another\r\ntest string"]]
我想"\r\n"
用空格替换(并":"
在所有字符串的末尾去掉)。
对于普通列表,我会使用列表理解来删除或替换类似的项目
example = [x.replace('\r\n','') for x in example]
甚至是 lambda 函数
map(lambda x: str.replace(x, '\r\n', ''),example)
但我无法让它适用于嵌套列表。有什么建议么?