python 生成器对象_在python中重置生成器对象

15 回复  |  直到 2 年前

8dd90cf47d9cd8d1663bb69f24f2d4a8.png

1

93

3 年前

另一种选择是使用

itertools.tee()

函数创建生成器的第二个版本:

y = FunctionWithYield()

y, y_backup = tee(y)

for x in y:

print(x)

for x in y_backup:

print(x)

从内存使用的角度来看,如果原始迭代可能不会处理所有的项,那么这可能是有益的。

646c35309b1b074fba9cf2e6a482ac3b?s=32&d=identicon&r=PG

2

118

11 年前

发电机不能重绕。您有以下选项:

再次运行发电机功能,重新启动发电:

y = FunctionWithYield()

for x in y: print(x)

y = FunctionWithYield()

for x in y: print(x)

将生成器结果存储在内存或磁盘上的数据结构中,您可以再次迭代:

y = list(FunctionWithYield())

for x in y: print(x)

# can iterate again:

for x in y: print(x)

期权的缺点

1个

是它再次计算值。如果这是CPU密集型的话,你最终会计算两次。另一方面,

是仓库。整个值列表将存储在内存中。如果值太多,这可能是不实际的。

所以你有经典的

内存与处理权衡

. 我无法想象一种在不存储值或重新计算值的情况下重绕生成器的方法。

eafdd6aad294e444451a173cefd0ee1a?s=32&d=identicon&r=PG

3

28

7 年前

>>> def gen():

... def init():

... return 0

... i = init()

... while True:

... val = (yield i)

... if val=='restart':

... i = init()

... else:

... i += 1

>>> g = gen()

>>> g.next()

0

>>> g.next()

1

>>> g.next()

2

>>> g.next()

3

>>> g.send('restart')

0

>>> g.next()

1

>>> g.next()

2

8a4d6f03a8879432d8563aefbf48e787?s=32&d=identicon&r=PG

4

24

11 年前

可能最简单的解决方案是将昂贵的部件包装在一个对象中,并将其传递给生成器:

data = ExpensiveSetup()

for x in FunctionWithYield(data): pass

for x in FunctionWithYield(data): pass

这样,您就可以缓存昂贵的计算。

如果可以同时将所有结果保存在RAM中,则使用

list()

将生成器的结果具体化为一个简单的列表并使用它。

5b3d56dfc7342cc2a436cc73515d68f2?s=32&d=identicon&r=PG

5

13

3 年前

我想为一个老问题提供不同的解决方案

class IterableAdapter:

def __init__(self, iterator_factory):

self.iterator_factory = iterator_factory

def __iter__(self):

return self.iterator_factory()

squares = IterableAdapter(lambda: (x * x for x in range(5)))

for x in squares: print(x)

for x in squares: print(x)

与类似的

list(iterator)

是这样吗?

O(1)

空间复杂性和

列表(迭代器)

O(n)

.缺点是,如果您只能访问迭代器,而不能访问生成迭代器的函数,那么就不能使用此方法。例如,

做下面的事情似乎是合理的,但它不会起作用。

g = (x * x for x in range(5))

squares = IterableAdapter(lambda: g)

for x in squares: print(x)

for x in squares: print(x)

646c35309b1b074fba9cf2e6a482ac3b?s=32&d=identicon&r=PG

6

5

11 年前

如果Grzegorzoledzki的回答不够,你可能会使用

send()

实现你的目标。见

PEP-0342

有关增强的生成器和yield表达式的更多详细信息。

更新:另请参见

itertools.tee()

. 它涉及到上面提到的一些内存与处理之间的权衡,但是它

可以

保存一些内存,而不只是存储生成器结果

list

这取决于你如何使用发电机。

6518601c45f36ac09aa177a3abfc1b21?s=32&d=identicon&r=PG

7

3

4 年前

通常,如果一个迭代器使用之前的大部分或全部数据

另一个迭代器启动,使用list()而不是tee()更快。

所以最好用

list(iterable)

相反,在你的情况下。

ee6aaeeac5220df039f4197c3d9bbfed?s=32&d=identicon&r=PG

8

3

3 年前

如果您的生成器在某种意义上是纯的,它的输出只依赖于传递的参数和步骤号,并且您希望结果生成器可以重新启动,那么下面的排序片段可能很方便:

import copy

def generator(i):

yield from range(i)

g = generator(10)

print(list(g))

print(list(g))

class GeneratorRestartHandler(object):

def __init__(self, gen_func, argv, kwargv):

self.gen_func = gen_func

self.argv = copy.copy(argv)

self.kwargv = copy.copy(kwargv)

self.local_copy = iter(self)

def __iter__(self):

return self.gen_func(*self.argv, **self.kwargv)

def __next__(self):

return next(self.local_copy)

def restartable(g_func: callable) -> callable:

def tmp(*argv, **kwargv):

return GeneratorRestartHandler(g_func, argv, kwargv)

return tmp

@restartable

def generator2(i):

yield from range(i)

g = generator2(10)

print(next(g))

print(list(g))

print(list(g))

print(next(g))

输出:

[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

[]

0

[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

1

3db10110d272c1d97909a3df93ac3c34?s=32&d=identicon&r=PG

9

2

4 年前

可以定义返回生成器的函数

def f():

def FunctionWithYield(generator_args):

code here...

return FunctionWithYield

现在,您可以随心所欲地执行以下操作:

for x in f()(generator_args): print(x)

for x in f()(generator_args): print(x)

8dd90cf47d9cd8d1663bb69f24f2d4a8.png

10

1

3 年前

没有重置迭代器的选项。迭代器迭代时通常会弹出

next()

功能。唯一的方法是在迭代迭代器对象之前进行备份。在下面检查。

正在使用项0到9创建迭代器对象

i=iter(range(10))

遍历将弹出的next()函数

print(next(i))

将迭代器对象转换为列表

L=list(i)

print(L)

output: [1, 2, 3, 4, 5, 6, 7, 8, 9]

所以项目0已经弹出。当我们将迭代器转换为list时,所有的项都会弹出。

next(L)

Traceback (most recent call last):

File "", line 1, in

next(L)

StopIteration

因此,在开始迭代之前,需要将迭代器转换为用于备份的列表。

列表无法转换为迭代器

iter()

8dd90cf47d9cd8d1663bb69f24f2d4a8.png

11

1

3 年前

您现在可以使用

more_itertools.seekable

(第三方工具),用于重置迭代器。

import more_itertools as mit

y = mit.seekable(FunctionWithYield())

for x in y:

print(x)

y.seek(0) # reset iterator

for x in y:

print(x)

注意:内存消耗随着迭代器的推进而增加,因此请注意大型iterables。

2861bfeb71de9de58206bb6ae750bc2f?s=32&d=identicon&r=PG

12

0

11 年前

我不知道你所说的昂贵的准备是什么意思,但我想你确实有

data = ... # Expensive computation

y = FunctionWithYield(data)

for x in y: print(x)

#here must be something to reset 'y'

# this is expensive - data = ... # Expensive computation

# y = FunctionWithYield(data)

for x in y: print(x)

如果是这样,为什么不重用呢?

data

是吗?

d1c1a0b065427aceb2a47f24e7d18332?s=32&d=identicon&r=PG

13

0

4 年前

好吧,你说你想多次调用一个生成器,但是初始化很昂贵…像这样的东西怎么样?

class InitializedFunctionWithYield(object):

def __init__(self):

# do expensive initialization

self.start = 5

def __call__(self, *args, **kwargs):

# do cheap iteration

for i in xrange(5):

yield self.start + i

y = InitializedFunctionWithYield()

for x in y():

print x

for x in y():

print x

或者,您可以创建自己的类,该类遵循迭代器协议并定义某种“重置”函数。

class MyIterator(object):

def __init__(self):

self.reset()

def reset(self):

self.i = 5

def __iter__(self):

return self

def next(self):

i = self.i

if i > 0:

self.i -= 1

return i

else:

raise StopIteration()

my_iterator = MyIterator()

for x in my_iterator:

print x

print 'resetting...'

my_iterator.reset()

for x in my_iterator:

print x

632775847282e6fd542f6391b57ffbdb?s=32&d=identicon&r=PG&f=1

14

0

2 年前

使用包装函数处理

StopIteration

可以向生成器生成函数编写一个简单的包装函数,该函数在生成器耗尽时跟踪。它将使用

停止迭代

当生成器到达迭代结束时引发异常。

import types

def generator_wrapper(function=None, **kwargs):

assert function is not None, "Please supply a function"

def inner_func(function=function, **kwargs):

generator = function(**kwargs)

assert isinstance(generator, types.GeneratorType), "Invalid function"

try:

yield next(generator)

except StopIteration:

generator = function(**kwargs)

yield next(generator)

return inner_func

正如您可以在上面看到的,当我们的包装函数捕获

停止迭代

异常,它只是重新初始化生成器对象(使用函数调用的另一个实例)。

然后,假设您在下面的某个地方定义了提供函数的生成器,您可以使用python函数decorator语法将其隐式包装:

@generator_wrapper

def generator_generating_function(**kwargs):

for item in ["a value", "another value"]

yield item

0bcf0fd33f6993202504ed393284fa7f?s=32&d=identicon&r=PG

15

-3

7 年前

它可以由代码对象完成。下面是例子。

code_str="y=(a for a in [1,2,3,4])"

code1=compile(code_str,'','single')

exec(code1)

for i in y: print i

4

for i in y: print i

exec(code1)

for i in y: print i

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值