我只是換了新的公司,他們使用python來開發。當我看到祖先的來源,我看到他們使用sys.path
導入本地模塊:在Python中導入本地模塊
import sys, os
sys.path.append(os.path.dirname(os.path.realpath(__file__))+"/folder/")
from folder import module as module
,我認爲這是不對的。我建議他們使用的軟件包是這樣的:
import path.to.module as module
他們忽略了我的建議。
我對不對?我谷歌,但我沒有找到任何提示。