sys path append in jupyter notebook code example
Example: append path to sys jupyter notebook
import sys
sys.path.append("../") # go to parent dir
from customFunctions import *
import sys
sys.path.append("../") # go to parent dir
from customFunctions import *