import function from another python script code example
Example 1: python include function from another file
from filename_without_py_extension import *
functionFromIncludedFile()
Example 2: how to import functions from another python file
from file_name import function_name #do not include brackets or file types