3分钟学会python获取当前运行文件路径的方法

python

下面是python获取当前运行文件路径的方法

通过 __file__ 获取

os.path.dirname(os.path.realpath(__file__))

通过 getcwd 获取当前路径

 os.getcwd()

其它相关路径

#当前文件路径

print(os.path.realpath(__file__))

#当前文件所在的目录,即父路径

print(os.path.split(os.path.realpath(__file__))[0])

#找到父路径下的其他文件,即同级的其他文件

print(os.path.join(proDir,"config.ini"))

以上是 3分钟学会python获取当前运行文件路径的方法 的全部内容, 来源链接: utcz.com/z/525334.html

回到顶部