Python运行时目录
如何从 Python 脚本中找到当前运行时目录?
How do I find out the current runtime directory from within a Python script?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何从 Python 脚本中找到当前运行时目录?
How do I find out the current runtime directory from within a Python script?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
使用
os.getcwd
。 这将告诉您当前工作目录。 如果您使用创建新文件,则将在当前工作目录中创建
a.txt
。 使用os.chdir
更改工作目录(如果需要)。Use
os.getcwd
. This will tell you the current working directory. If you create a new file withthen
a.txt
will be created in the current working directory. Useos.chdir
to change the working directory, if needed.这对我有用。
This is working for me.
当您使用 os.chdir 时,
os.getcwd()
将发生变化。如果您需要 python 文件的固定路径,请使用:
os.getcwd()
will change when u useos.chdir
If you need a fixed path to your python file, use: