我正在尝试在python的itertools中模拟“链”功能。
我想出了以下生成器。
# Chain make an iterator that returns elements from the first iterable
# until it is exhausted, then proceeds to the next iterable, until all
# of the iterables are exhausted.
def chain_for(*a) :
if a :
for i in a :
for j in i :
yield j
else :
pass
如何在类中模拟相同的函数? 由于该函数的输入是任意数量的列表,因此我不确定是否可以在类中使用包装/拆包,如果可以,我不确定如何在' init '方法中拆包
class chain_for :
def __init__(self, ...) :
....
def __iter__(self) :
self
def __next__(self) :
.....
谢谢。
答案 0 :(得分:1)
def chain_for(*a):
和def __init__(self, *a):
之间没有(太多)区别。
因此,实现此目标的一种非常粗略的方法可以是:
class chain_for:
def __init__(self, *lists):
self.lists = iter(lists)
self.c = iter(next(self.lists))
def __iter__(self):
while True:
try:
yield next(self.c)
except StopIteration:
try:
self.c = iter(next(self.lists))
except StopIteration:
break
yield next(self.c)
chain = chain_for([1, 2], [3], [4, 5, 6])
print(list(chain))
输出:
[1, 2, 3, 4, 5, 6]