Python的itertools.repeat的目的是什么?

Python的itertools.repeat的目的是什么?,第1张

Python的itertools.repeat的目的是什么?

itertools.repeat
函数是惰性的;它仅使用一项所需的内存。另一方面,
(a,) * n
[a] *n
惯用法在内存中创建对象的n个副本。对于五个项目,乘法习惯用法可能更好,但是如果必须重复一百万次,您可能会注意到资源问题。

不过,很难想象的许多 静态 用途

itertools.repeat
。但是,事实上,它
itertools.repeat
是一个 功能,
使您可以在许多功能应用程序中使用它。例如,您可能具有一些
func
可对输入进行迭代的库函数。有时,您可能已经预先构造了各种项目的列表。其他时候,您可能只想对统一列表进行 *** 作。如果列表很大,
itertools.repeat
将节省您的内存。

最后,

repeat
使
itertools
文档中描述的所谓“迭代器代数”成为可能。甚至
itertools
模块本身也使用该
repeat
功能。例如,以下代码作为的等效实现给出
itertools.izip_longest
(即使实际代码可能用C编写)。请注意
repeat
从底部开始使用七行:

class ZipExhausted(Exception):    passdef izip_longest(*args, **kwds):    # izip_longest('ABCD', 'xy', fillvalue='-') --> Ax By C- D-    fillvalue = kwds.get('fillvalue')    counter = [len(args) - 1]    def sentinel():        if not counter[0]: raise ZipExhausted        counter[0] -= 1        yield fillvalue    fillers = repeat(fillvalue)    iterators = [chain(it, sentinel(), fillers) for it in args]    try:        while iterators: yield tuple(map(next, iterators))    except ZipExhausted:        pass


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5623878.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存