在Python中,您可以使用os模块的os.chdir()函数来更改当前工作目录
os
os.chdir()
import os # 切换到指定目录 new_directory = "/path/to/your/target/directory" os.chdir(new_directory) # 打印当前工作目录以确认更改 print("当前工作目录已更改为:", os.getcwd())
请将/path/to/your/target/directory替换为您要切换到的实际目录路径。
/path/to/your/target/directory