import os,sys,inspect
#####################################
# get file dir then add relative path
file = inspect.getfile(inspect.currentframe())
pathdir = os.path.dirname(os.path.abspath(file)) + '/..'
sys.path.insert(0,pathdir)
####################
# import your module
import say_hello
say_hello.hello_world()
※ 引述《clsmbstu (missing)》之銘言:
: 假設我有一個資料夾(helloworld)在桌面上,結構如下:
: helloworld
: |