eolas/_meta/Unsorted_notes.md

10 lines
233 B
Markdown
Raw Normal View History

### 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