I posed the question in the figure below:

EDIT The
question posed next to the figure is as follows:
How to get script_A1 to import a function from script_B2?
Similar questions were asked before. But most answers suggest adding the / script / package module (independently) to the PATH variable. For instance:
sys.path.append('...')
But adding a module to the PATH variable just seems wrong. I do not want to change my system in any way. When my application closes, I want my Python environment to be clean and untouched. I am afraid that adding uncontrolled modules to PATH variables on my system will cause headaches later.
Thank you for helping me :-)