Understanding Namespaces
00:00 A namespace is a collection of names such as variable names, function names, and class names. It’s important to remember that every Python module has its own namespace, so you need to pay attention to the namespace. Depending on which file you are in, you need to work with the namespace differently,
00:20
and that’s the reason why the import
doesn’t work yet. So let’s fix it.
Become a Member to join the conversation.