标签:pytho path imp 路径 bsp 系统路径 print code python
Python可以使用OS模块智能添加sys.path
import os
import sys
if __name__== ‘__main__‘:
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
print(BASE_DIR)
sys.path.append(BASE_DIR)
标签:pytho path imp 路径 bsp 系统路径 print code python
原文地址:https://www.cnblogs.com/konglinqingfeng/p/9603652.html