Can’t load module “dict”
-
I’m unable to import the dict module even though autocomplete shows it available.
I’ve tried both:- import key from dict
- import dict
Both give me the error:
ModuleNotFoundError: No module named 'dict'
I’m not sure what to do about that, but googling the issue gave me no help.
Any thoughts?
-
dict
is a built-in type, not a module that needsimport
ing
What are you trying to accomplish, @Sway?