温馨提示×

python中cd命令怎么切换目录

小樊
82
2024-12-09 14:36:07
栏目: 编程语言

在Python中,您可以使用os模块中的chdir()函数来更改当前工作目录

import os

# 切换到指定目录
new_directory = "/path/to/your/target/directory"
os.chdir(new_directory)

# 打印当前工作目录以确认更改
print("Current working directory:", os.getcwd())

请确保将/path/to/your/target/directory替换为您要切换到的实际目录路径。

0