Can functions found in other python files call other functions within that same file?
I am making use of jupyter notebook. I am making use of the package "import_ipynb" in order to import my other notebook("othernb.ipynb") which contains several functions that I have defined. I wish to call the function "A" which calls function "B". Both these functions are found within "othernb.ipynb".
However, after importing "othernb.ipynb" and calling upon function "A", I receive a an error message where function "B" is not defined.
Edited How should I import the "othernb.ipynb" so that the functions are able to call other functions found within the file ?
Any help is appreciated.