In e.g.
from sympy import *
what is the meaning of import *
?
In e.g.
from sympy import *
what is the meaning of import *
?
It simply says that you want all of the module's variables imported into your module's namespace. if scipy
has a variable foo
, you get the same object with the same name in your module's "global" namespace. Modules can modify what "all" means using the special variable __all__
.