2
When importing a Python module, Python allows you to alter the imported name in order to avoid name conflicts:
from x2 import y
from x import y as z
Then you will be able to refer to the imported module x.y as z without conficting with the x2.y module.
Source:stackexchange.com