I have a project structured like this:
Folder A
Folder B
b.py
__init__.py
Folder C
c.py
__init__.py
__init__.py
I want to import c.py
from b.py
, is there any way I can do this without:
- Moving any of the files
- Using absolute paths ("C\Users...c.py")
Thank you so much.