在Python中,你不能直接使用cd
命令来更改目录,因为cd
是Unix和Linux系统中的shell命令
import os
# 切换到指定目录
def change_directory(path):
if os.path.exists(path):
os.chdir(path)
print(f"成功切换到 {path}")
else:
print(f"目录 {path} 不存在")
# 示例
change_directory("/path/to/your/target/directory")
请注意,这个示例仅适用于Python脚本。如果你想在交互式Python shell中更改目录,你需要使用os
模块的chdir()
函数,如上所示。