__neg__
python中 __neg__ 方法对应于 符号 -
可见 str 没有__neg__,定义 strnew
好吧,无法再简化了
__iter__
看看 list 的 __iter__:
list_iterator 也是有 __iter__ 的,它返回自己。
python2 迭代调用 next;python3 迭代调用 __next__。
__next__ 结束时 raise StopIteration 告诉for循环已经结束。
本文共 291 字,大约阅读时间需要 1 分钟。
python中 __neg__ 方法对应于 符号 -
可见 str 没有__neg__,定义 strnew
好吧,无法再简化了
看看 list 的 __iter__:
list_iterator 也是有 __iter__ 的,它返回自己。
python2 迭代调用 next;python3 迭代调用 __next__。
__next__ 结束时 raise StopIteration 告诉for循环已经结束。
转载于:https://www.cnblogs.com/backinfile/p/5953141.html