标签:相对路径 base pen 获得 article 环境 pre pytho 软件
一. 目录结构
www.cnblogs.com/alex3714/articles/5765046.html
print(__file__) 获得相对路径
import os
print(os.path.abspath(__file__)) 获取绝对路径
import os
import sys
print(os.path.abspath(__file__))
print(os.path.dirname(os.path.abspath(__file__)))
BASE = ( os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
sys.path.append(BASE) #添加环境变量
import conf ,core
标签:相对路径 base pen 获得 article 环境 pre pytho 软件
原文地址:https://www.cnblogs.com/bltstop/p/9557396.html