gpt4 book ai didi

python-3.x - python 3 : do strings have __next__() method?

转载 作者:行者123 更新时间:2023-12-01 02:40:30 24 4
gpt4 key购买 nike

>>> s = 'spam'
>>> s.__next__()

结果是:回溯(最近调用最后): 文件“”,第 1 行,位于 s._下一个_()AttributeError:“str”对象没有属性“_next_”

但是在文档中http://docs.python.org/py3k/library/stdtypes.html#iterator-types我们可以阅读迭代器类型:

Python 支持容器迭代的概念。这是使用两种不同的方法实现的;这些用于允许用户定义的类支持迭代。 下面更详细描述的序列始终支持迭代方法。

下面描述的是:序列类型——str、bytes、bytearray、list、tuple、range。

那么,为什么str不支持next()呢?

最佳答案

字符串没有__next__方法,但是str_iterator对象有。
您必须对字符串调用 iter 才能接收可迭代 (str_iterator) 对象。

>>> s = 'spam'
>>> g = iter(s)
>>> g
<str_iterator object at 0xad91d0>
>>> next(g)
's'
>>> next(g)
'p'
>>> next(g)
'a'
>>> next(g)
'm'
>>> next(g)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
StopIteration

了解迭代器必须是一个单独的对象很重要,否则您将无法同时为同一对象拥有多个迭代器:

>>> g, h = iter(s), iter(s)
>>> next(h)
's'
>>> list(zip(g, h))
[('s', 'p'), ('p', 'a'), ('a', 'm')]

关于python-3.x - python 3 : do strings have __next__() method?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12552986/

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