diff --git a/_meta/Unsorted_notes.md b/_meta/Unsorted_notes.md new file mode 100644 index 0000000..c77af09 --- /dev/null +++ b/_meta/Unsorted_notes.md @@ -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