gpt4 book ai didi

python - 如何在python程序中添加islice函数?

转载 作者:行者123 更新时间:2023-11-28 20:23:01 27 4
gpt4 key购买 nike

我正在尝试使用 islice 函数,但出现以下错误:

Traceback (most recent call last):
File "/Users/gavinnachbar/Session 3 copy/all_in_one_almost.py", line 168, in <module>
all_decisions.extend(islice(reader,4))
NameError: name 'islice' is not defined

我已经导入了 itertools 但仍然出现错误,知道为什么吗?

最佳答案

...因为您正在尝试导入不存在的迭代器

编辑:

你试过吗

from itertools import islice

all_decisions.extend(itertools.islice(reader,4))

关于python - 如何在python程序中添加islice函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21769495/

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