10 lines
233 B
Markdown
10 lines
233 B
Markdown
![]() |
### Difference in import types Python
|
||
|
|
||
|
import x
|
||
|
requires dot notation to individuate different components in the module
|
||
|
|
||
|
from x import y
|
||
|
|
||
|
import a component directly from the module
|
||
|
removes the need to use dot notation to indviduate
|