how to import a program from 1 file to another in python code example
Example: import one file into another python
import os
os.chdir("**Put here the directory where you have the file with your function**")
from file import function
os.chdir("**Put here the directory where you were working**")