DEV Community

Lam Nguyen
Lam Nguyen

Posted on

Relative imports in Python 3

Relative imports in Python 3

938

I want to import a function from another file in the same directory.

Sometimes it works for me with from .mymodule import myfunction but sometimes I get a:

SystemError: Parent module '' not loaded, cannot perform relative import

Sometimes it works with from mymodule import myfunction, but sometimes I…

Top comments (0)