简体   繁体   中英

difference between from x import y and import x.y

So I am confused as what the difference is...Here is some code to display my confusion:

>>> import collections.OrderedDict as od
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named OrderedDict
>>> from collections import OrderedDict as od
>>> od
<class 'collections.OrderedDict'>

explanation:

import collections.OrderedDict did not find the module, yet from collections import OrderedDict found it?! What is the difference between those two statements?

the class is read as collections.OrderedDict , so I don't understand why the first attempt was unable to find the module

note:

I am simply using collections as an example. I am not looking for specifically why my example acted the way it did for collections, but rather an explanation for what the different lines of code are actually requesting as far as imports go. If you would like to include an explanation on the error, feel free! Thanks!

OrderedDict is a class within the collections module. When you see things like xy and something is being imported from it, that means that "y" in this case is actually a module.

You should read the docs about how import works: here . It's long and involved but at the same time fairly straight forward in how it looks into the different packages and modules to find what should be brought into play. Specifically, the import statement itself and import system .

PEP 221 talks about import as .

import foo.bar

is for importing a submodule bar of the module foo . This can be 'imported as'

import foo.bar as fb

An object is imported

from foo import baz

This, too, can be 'imported as'

from foo import baz as fb

collections.OrderedDict is not a submodule but an object so it can only be 'imported as' in the second way.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM