From 016ba1136d4703bcda5fd87926a36f4cefbbe0f3 Mon Sep 17 00:00:00 2001 From: thomasabishop Date: Fri, 21 Apr 2023 06:53:37 +0100 Subject: [PATCH] add unsorted notes for later incorporation --- _meta/Unsorted_notes.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 _meta/Unsorted_notes.md 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