gpt4 book ai didi

Python 3.4 - 无法导入模块

转载 作者:行者123 更新时间:2023-12-01 22:34:30 26 4
gpt4 key购买 nike

<分区>

我想使用 bisect 模块,但出现此错误当我尝试 import bisect 时:

NameError: global name 'bisect_left' is not defined

当我尝试 from bisect import bisect_left 时出现此错误:

ImportError: cannot import name bisect_left

我尝试使用 python 文档中的这个函数:

def index(a, x):
'Locate the leftmost value exactly equal to x'
i = bisect_left(a, x)
if i != len(a) and a[i] == x:
return i
else:
return False

我做错了什么?

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