add unsorted notes for later incorporation

This commit is contained in:
thomasabishop 2023-04-21 06:53:37 +01:00
parent c99456ab25
commit 016ba1136d

9
_meta/Unsorted_notes.md Normal file
View file

@ -0,0 +1,9 @@
### 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