python-cookbook學習筆記九 迭代器與生成器二

我們來看下yield在類中的應用。代碼如下: class Node:     def __init__(self,value):         self._value=value         self._child=[]     def __repr__(self):         return "Node%s" % self._value     def add_child(
相關文章
相關標籤/搜索