Why should the form import statement be avoided to import objects?

We should avoid importing any object like from <module> import <object> because in this way object is added in current namespace and if any existing variable’s name resembles with the variable imported via module, so imported variable is ignored.

error: Content is protected !!