gpt4 book ai didi

python - 如何有效地耗尽 oneliner 中的迭代器?

转载 作者:太空狗 更新时间:2023-10-29 20:13:43 24 4
gpt4 key购买 nike

如果我有一个迭代器 it 并且想耗尽它,我可以这样写:

for x in it:
pass

是否有内置或标准库调用允许我在一行中完成它?我当然可以:

list(it)

这将从迭代器构建一个列表,然后丢弃它。但我认为由于列表构建步骤而效率低下。为自己编写一个执行空 for 循环的辅助函数当然是微不足道的,但我很好奇是否还有其他我遗漏的东西。

最佳答案

来自itertools recipes :

    # feed the entire iterator into a zero-length deque
collections.deque(iterator, maxlen=0)

关于python - 如何有效地耗尽 oneliner 中的迭代器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36763084/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com