python——获取发当前文件的路径 -os.path.dirname() os.path.abspath()

SRC_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)), "src")
# os.path.abspath(__file__) get the file of nncp.py 
# os.path.dirname(path) remove the filename ,return the file of last dir 
# os.path.join(A,”B“)拼接AB

python——获取发当前文件的路径 -os.path.dirname() os.path.abspath()_第1张图片

你可能感兴趣的:(nn)