python 中怎么获取工作路径
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 中怎么获取工作路径相关的知识,希望对你有一定的参考价值。
import os# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
可以参考django的方式。注意,若获取路径的文件位于项目根目录中,则需要剥掉一层os.path.dirname :
import os# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.abspath(__file__)) 参考技术A
以下代码运行通过:
import oscurDir = os.getcwd()
print('\\n', curDir)
运行效果:
pwd = os.getcwd()
print (pwd) 参考技术D import os
os.getcwd()
以上是关于python 中怎么获取工作路径的主要内容,如果未能解决你的问题,请参考以下文章