怎么更改python的默认路径

可以通过os模块来实现python中路径的更改。

(推荐教程:Python入门教程)

os.chdir() 方法用于改变当前工作目录到指定的路径。如果允许访问返回 True , 否则返回False。

查看默认路径:

>>> import os
>>> os.getcwd()

'D:Program FilesPython35'

更改默认路径:

>>> os.chdir("D:Program FilesPython35modifyPath	est02")
>>> os.getcwd()

'D:Program FilesPython35 modifyPath  test02

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » 怎么更改python的默认路径