Say I have this "running" python file located in:
C:\folder\subfolder_first\running.py
And I have a "helper" python file located in: C:\folder\subfolder_second\helper.py
I am using Pycharm and I want to run some of the functions/methods of the helper file in the running file. How do I do it?
from folder.subfolder_second import helper
I tried the above line, but it gives me the error message: ImportError: No module named blah blah blah...