I have several python modules in the project and I put them in different folders, for example,
pythonProject\folderA\modulex.py
pythonProject\folderB\moduley.py
pythonProject\commonModule\module1.py 
I have __init__.py in each folder. 
In this situation, how can I import module1 into modulex? 
 
     
     
    