gpt4 book ai didi

python - AttributeError: 'list' 对象没有属性 'split'

转载 作者:太空狗 更新时间:2023-10-30 00:55:35 25 4
gpt4 key购买 nike

使用 Python 2.7.3.1

我不明白我的编码有什么问题!我收到此错误:AttributeError: 'list' object has no attribute 'split

这是我的代码:

myList = ['hello']

myList.split()

最佳答案

你可以简单地做 list(myList[0]) 如下:

>>> myList = ['hello']
>>> myList=list(myList[0])
>>> myList
['h', 'e', 'l', 'l', 'o']

参见 documentation这里

关于python - AttributeError: 'list' 对象没有属性 'split',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26942061/

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