def manual_iter():
with open('/etc/passwd') as f:
try:
while True:
line=next(f)
if line is None:
break
print(line,end='')
except StopIteration:
pass #test case items=[1,2,3] it=iter(items) next(it) next(it) next(it)
class Node:
def init(self,value):
self._value=value
self._children=[]
def repr(self):
return 'Node({!r})'.fromat(self._value)
def add_child(self,node):
self._children.append(node)
def iter(self):
#将迭代请求传递给内部的_children属性
return iter(self._children) #test case
if name='main':
root=Node(0)
child1=Node(1)
child2=Nide(2)
root.add_child(child1)
root.add_child(child2)
for ch in root:
print(ch) a=[1,2,3,4]
for x in reversed(a):
print(x) #4 3 2 1
f=open('somefile')
for line in reversed(list(f)):
print(line,end='')
#test case
for rr in reversed(Countdown(30)):
print(rr)
for rr in Countdown(30):
print(rr) class Countdown:
def init(self,start):
self.start=start
#常规迭代
def iter(self):
n=self.start
while n > 0:
yield n
n -= 1
#反向迭代
def reversed(self):
n=1
while n <= self.start:
yield n
n +=1 with open('/etc/passwd') as f:
for line in f:
print(line,end='') from itertools import dropwhile
with open('/etc/passwd') as f:
for line in dropwhile(lambda line:line.startwith('#'),f):
print(line,end='') from collections import Iterable
def flatten(items,ignore_types=(str,bytes)):
for x in items:
if isinstance(x,Iterable) and not isinstance(x,ignore_types):
yield from flatten(x)
else:
yield x #test case items=[1,2,[3,4,[5,6],7],8] for x in flatten(items): print(x)
以上就是Python中迭代器与生成器实例详解的详细内容,更多请关注Gxl网其它相关文章!
查看更多关于Python中迭代器与生成器实例详解的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://haodehen.cn/did82420