pythonpython-import

Why is "import *" bad?


It is recommended to not to use import * in Python.

Can anyone please share the reason for that, so that I can avoid it doing next time?


Solution