Python, importieren andere Skripte aus anderen Verzeichnissen
import sys
sys.path.insert(0, 'path/to/your/py_file')
import py_file
Thoughtful Turtle
import sys
sys.path.insert(0, 'path/to/your/py_file')
import py_file