Jupyter Notebooks Python Modules Not Found

Hi can anyone help me with his so I have a file locate in preprocessingfolder and then i try to run this file in another folder by useing code

from preprocessing.preprocessing_general import preprocess
this error pop up No module named ‘preprocessing.preprocessing_general’

I try import import_ipynb and still not work anyone have idea how to fix this problem?

Most likely your current working directory doesn’t know the path to your submodule.
The easiest way would be to create a preprocessing.py file in the same working directory, which contains the desired methods.

The Python import system is explained here in more detail.