在Python中,cd
命令實際上是一個內置函數,用于更改當前工作目錄
import os
# 切換到指定目錄
os.chdir("path/to/directory")
# 獲取當前工作目錄
current_directory = os.getcwd()
print("當前工作目錄:", current_directory)
請注意,這里的path/to/directory
應該替換為您要切換到的實際目錄路徑。使用os.chdir()
函數后,您可以使用os.getcwd()
函數獲取當前工作目錄。