python修改工作路径

修改工作路径方便测试开发

1
2
3
4
import os
# 修改工作路径方便测试开发
path = r"C:\Users\Administrator\Documents\GitHub\BF-grading-range\\"
os.chdir(path) # 也可 ../ 如此切换路径

此外

1
os.getcwd() # 查看工作路径

例子二

1
2
3
4
5
6
7
8
9
10
def chdir():
# 切换工作路径
import os
path = "../"
os.chdir(path)
a = os.getcwd()
print(a)

if __name__ == '__main__':
chdir()

参考

https://www.runoob.com/python/os-chdir.html