作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
在讨论this answer我们意识到元组没有 __reversed__
方法。我的猜测是创建迭代器需要改变元组。然而,元组与 reversed
配合得很好。为什么不能使用于 reversed
的方法也适用于 __reversed__
?
>>> foo = range(3)
>>> foo
[0, 1, 2]
>>> list(foo.__reversed__())
[2, 1, 0]
>>> foo
[0, 1, 2]
>>> bar = (0, 1, 2)
>>> list(bar.__reversed__())
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'tuple' object has no attribute '__reversed__'
>>> reversed(bar)
<reversed object at 0x10603b310>
>>> tuple(reversed(bar))
(2, 1, 0)
最佳答案
根据spec :
反转(seq)
Return a reverse iterator. seq must be an object which has a reversed() method or supports the sequence protocol (the __len__() method and the __getitem__() method with integer arguments starting at 0).
关于python - 为什么 Python 中的元组使用 reversed 但没有 __reversed__?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24750146/
在讨论this answer我们意识到元组没有 __reversed__ 方法。我的猜测是创建迭代器需要改变元组。然而,元组与 reversed 配合得很好。为什么不能使用于 reversed 的方法
我是一名优秀的程序员,十分优秀!