在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
替换为您要切换到的实际目录路径。