Is there a difference between these 3 methods to import a module in the __init__.py file of a package?
Assuming that the module.py and the __init__.py are in the same directory and I am importing the package in my program as import package
import package.module
from package import module
from . import module
I did all of them and apparently, all worked with the same results.