在Python中,你不能直接使用cd
命令来更改目录,因为cd
是Unix和Linux系统中的shell命令
import os # 设置要切换到的目标目录 target_directory = "/path/to/your/target/directory" # 使用os.chdir()函数更改当前工作目录 os.chdir(target_directory) # 打印当前工作目录以确认更改 print("Current working directory:", os.getcwd())
将/path/to/your/target/directory
替换为你要切换到的实际目录。这段代码将更改当前工作目录,并打印出新的当前工作目录。