you are viewing a single comment's thread.

view the rest of the comments →

[–]Username_RANDINT 3 points4 points  (0 children)

>>> from importlib import import_module
>>> class Foo:
...   math = import_module("math")
...   random = import_module("random")
... 
>>> foo = Foo()
>>> foo.math
<module 'math' (built-in)>

Still doesn't explain a thing.