gpt4 book ai didi

Python 3 错误 : 'module' object has no attribute 'split'

转载 作者:太空宇宙 更新时间:2023-11-04 07:01:08 24 4
gpt4 key购买 nike

<分区>

在 Python 2.7 解释器中,字符串拆分函数按预期工作:

>>> import string
>>> a = "a b c"
>>> string.split(a)
['a', 'b', 'c']

但是,在 Python 3.4.1 解释器中,我得到一个错误:

>>> import string
>>> a = "a b c"
>>> string.split(a)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'split'

知道我在这里遗漏了什么吗?

谢谢!

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