diff options
Diffstat (limited to 'advanced_python/modules.rst')
-rw-r--r-- | advanced_python/modules.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/advanced_python/modules.rst b/advanced_python/modules.rst index 833334d..f3df676 100644 --- a/advanced_python/modules.rst +++ b/advanced_python/modules.rst @@ -89,7 +89,7 @@ And run the script, Yes! it worked. So what did we do? We actually imported the required functions and keywords, using ``import``. -By using the *, we are asking python to import everything from the +By using the * , we are asking python to import everything from the ``scipy`` and ``pylab`` modules. This isn't a good practice, as 1. it imports a lot of unnecessary things 2. the two modules may have functions with the same name, which would |