os.getcwd为什么总返回python的安装目录,而不是当前脚本工作目录
答案:1 悬赏:70 手机版
解决时间 2021-11-27 01:50
- 提问者网友:皆是孤独
- 2021-11-26 14:24
os.getcwd为什么总返回python的安装目录,而不是当前脚本工作目录
最佳答案
- 五星知识达人网友:舍身薄凉客
- 2021-11-26 14:29
os.getcwd()
Return a string representing the current working directory.
Availability: Unix, Windows.
os.getcwd返回的是当前的工作路径,就是你在什么地方执行的python命令,如果你想获取脚本所在的目录可以使用:
import os
print os.path.dirname(os.path.realpath(__file__))
如果解决了您的问题请采纳!
如果未解决请继续追问!
Return a string representing the current working directory.
Availability: Unix, Windows.
os.getcwd返回的是当前的工作路径,就是你在什么地方执行的python命令,如果你想获取脚本所在的目录可以使用:
import os
print os.path.dirname(os.path.realpath(__file__))
如果解决了您的问题请采纳!
如果未解决请继续追问!
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯