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'>
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
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!
The difference between import and from import in Python is: import imports the whole library. from import imports a specific member or members of the library.
from x import y will only import y from module x . This way, you won't have to use dot-notation. (Bonus: from x import * will refer to the module in the current namespace while also replacing any names that are the same) import x as y will import module x which can be called by referring to it as y.
OrderedDict
is a class within the collections
module. When you see things like x.y 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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With