在Python中,你不能直接使用cd
命令来更改目录,因为cd
是Python解释器外部的shell命令
import os
# 获取当前工作目录
current_directory = os.getcwd()
print(f"当前工作目录: {current_directory}")
# 更改到指定目录
new_directory = "/path/to/your/target/directory"
os.chdir(new_directory)
# 再次获取当前工作目录以确认更改
updated_directory = os.getcwd()
print(f"更新后的工作目录: {updated_directory}")
请将/path/to/your/target/directory
替换为你想要切换到的目录路径。