乐趣区

关于python:添加当前python文件路径到环境变量

import os,sys
curPath = os.path.abspath(os.path.dirname(__file__))
filePath = os.path.split(curPath)[0]
sys.path.append(filePath)
sys.path.extend([filePath + '\\' + i for i in os.listdir(filePath)])
退出移动版