gpt4 book ai didi

Python os.chdir() 似乎不起作用

转载 作者:太空狗 更新时间:2023-10-30 00:20:02 32 4
gpt4 key购买 nike

我似乎无法在 python 中更改我的目录:

import os

os.getcwd()

'C:\\Users\\Jon\\Folder\\IdbyGenotype'

os.chdir(r"C:\Users\Jon\Folder\IdbyGenotype\thisone")

os.getcwd()

'C:\\Users\\Jon\\Folder\\IdbyGenotype'

我错过了什么吗?这里可能出了什么问题?

谢谢

最佳答案

无论您使用的是 Windows 还是 Linux,在路径中使用正斜杠 (/)

import os

os.getcwd()

'C:\\Users\\Jon\\Folder\\IdbyGenotype'

os.chdir("C:/Users/Jon/Folder/IdbyGenotype/thisone")

这在我的案例中有效。

关于Python os.chdir() 似乎不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18239915/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com