在Python中,cd
命令用于更改當前工作目錄
import os
# 切換到指定目錄
new_directory = "/path/to/your/target/directory"
os.chdir(new_directory)
# 獲取當前工作目錄
current_directory = os.getcwd()
print("當前工作目錄已更改為:", current_directory)
在這個示例中,我們首先導入os
模塊,然后使用os.chdir()
函數更改當前工作目錄。我們還使用os.getcwd()
函數獲取當前工作目錄并將其打印出來。請將/path/to/your/target/directory
替換為您要切換到的實際目錄。