Why does this AttributeError in python occur?

2019-01-22 11:13发布

There is one thing, that I do not understand.

Why does this

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

matrix = scipy.sparse.coo_matrix(some_params)

produce this error:

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

4条回答
成全新的幸福
2楼-- · 2019-01-22 12:00

Because you imported scipy, not sparse. Try from scipy import sparse?

查看更多
走好不送
3楼-- · 2019-01-22 12:00

AttributeError is raised when attribute of the object is not available.

An attribute reference is a primary followed by a period and a name:

attributeref ::= primary "." identifier

To return a list of valid attributes for that object, use dir(), e.g.:

dir(scipy)

So probably you need to do simply: import scipy.sparse

查看更多
迷人小祖宗
4楼-- · 2019-01-22 12:01

The default namespace in Python is "__main__". When you use import scipy, Python creates a separate namespace as your module name. The rule in Pyhton is: when you want to call an attribute from another namespaces you have to use the fully qualified attribute name.

查看更多
爷的心禁止访问
5楼-- · 2019-01-22 12:02

This happens because the scipy module doesn't have any attribute named sparse. That attribute only gets defined when you import scipy.sparse.

Submodules don't automatically get imported when you just import scipy; you need to import them explicitly. The same holds for most packages, although a package can choose to import its own submodules if it wants to. (For example, if scipy/__init__.py included a statement import scipy.sparse, then the sparse submodule would be imported whenever you import scipy.)

查看更多
登录 后发表回答