gpt4 book ai didi

python - Split() 函数给我带来了麻烦

转载 作者:行者123 更新时间:2023-11-30 23:05:00 27 4
gpt4 key购买 nike

stl = ["one two three four five six"]    
print(stl)

stl = stl.split()
print(stl)

这是在 python 3 中。它说:

list object has no attribute 'split'

我希望它给出reg字符串,然后当要求再次打印它时,它会将其作为列表给出。

最佳答案

您正在尝试拆分列表。 split() 是一个字符串函数,但不是列表函数。要拆分列表中的字符串,您可以索引第一个元素(字符串)并对其调用 split

>>> stl[0].split()
['one', 'two', 'three', 'four', 'five', 'six']

关于python - Split() 函数给我带来了麻烦,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33404058/

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