如何在Python 2.7中获取cmd打开的路径

时间:2016-02-01 13:49:06

标签: python python-2.7 path windows-10

我从cmd运行Python文件,我需要一个我打开cmd的路径

C:\Users\test\Desktop\> D:\DEV\test.py

我需要C:\ Users \ test \ Desktop \ path

1 个答案:

答案 0 :(得分:2)

我不确定我是否完全理解这个问题但是,要获得包含脚本的目录的当前工作目录,您可以使用:

import os
print(os.getcwd())

您可以在Python Docs

中找到更多信息