改变python的默认路径为当前的工作路径

通过os模块来进行python中路径的更改

默认路径为:

>>> 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如何设置路径