gpt4 book ai didi

python - 我想用逗号拆分嵌套列表中的元素

转载 作者:太空宇宙 更新时间:2023-11-03 13:25:14 26 4
gpt4 key购买 nike

下面是列表。

List=[['hello', 'how'], ['are', 'you', 'hope'], ['you,are,fine', 'thank', 'you']]

我希望输出列表为

List=[['hello', 'how'], ['are', 'you', 'hope'], ['you', 'are' ,'fine', 'thank', 'you']]

最佳答案

尝试以下嵌套 comprehension在一次演练中重新编译列表,同时 split设置 token :

>>> [[token for el in sub for token in el.split(',')] for sub in List]
[['hello', 'how'], ['are', 'you', 'hope'], ['you', 'are', 'fine', 'thank', 'you']]

关于python - 我想用逗号拆分嵌套列表中的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57388755/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com