Python CookBook fourth chapter(第四章)
import time
# 4.1、手动遍历迭代器
# 通过next()和StopIteration异常,取代for
items = [1,2,3]
it = iter(items)
next(it)
1
# 4.2 代理迭代
# __iter__() 和 __str__() 和 __repr() 用法
class Node:
def __init__(self, value):...
原创
2019-05-02 17:46:12 ·
620 阅读 ·
0 评论