How to import a file from one package into another in Python without using sys.path.append(…) in Visual Studio Code?
I am working on a Python project using Visual Studio Code (VSC) and have the following folder structure: Python ├──.vscode │ └── launch.json ├── package1 │ ├── __init__.py │ └── module1.py ├── package2 │ ├── __init__.py │ └── module2.py └──…