gpt4 book ai didi

python - 为什么python中会出现这个AttributeError?

转载 作者:IT老高 更新时间:2023-10-28 21:51:37 29 4
gpt4 key购买 nike

有一件事我不明白。

为什么会这样

import scipy # happens with several other modules, too. I took scipy as an example now...

matrix = scipy.sparse.coo_matrix(some_params)

产生这个错误:

AttributeError: 'module' object has no attribute 'sparse'

最佳答案

这是因为 scipy 模块没有任何名为 sparse 的属性。该属性仅在您 import scipy.sparse 时被定义。

当您只是 import scipy 时,子模块不会自动导入;您需要明确导入它们。大多数包也是如此,尽管包可以根据需要选择导入自己的子模块。 (例如,如果 scipy/__init__.py 包含语句 import scipy.sparse sparse 子模块将在您导入 scipy 时导入。)

关于python - 为什么python中会出现这个AttributeError?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8696322/

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