gpt4 book ai didi

python - 如何转换包含单个字符串且字符串内有多个条目的列表。 python 3

转载 作者:行者123 更新时间:2023-12-01 01:42:32 25 4
gpt4 key购买 nike

假设您有一个列表,其中包含一个字符串:

listExample = ['cat, dog, mouse, elephant']

因此打印此列表将值作为单个字符串返回:

>>>'cat, dog, mouse, elephant'

如何让这个字符串达到可以将条目作为多个字符串获取的程度,例如:

>>>print(anotherList)
>>>['cat', 'dog', 'mouse', 'elephant']

最佳答案

您正在描述 str.split 的基本用法:

>>> listExample = ['cat, dog, mouse, elephant']
>>> listExample[0].split(', ')
['cat', 'dog', 'mouse', 'elephant']

关于python - 如何转换包含单个字符串且字符串内有多个条目的列表。 python 3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51737762/

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