shell 命令 'cd' 允許用戶導航和更改其當前工作目錄。在 Python 中,os.chdir() 函數相當於修改工作目錄。
import os os.chdir(path)
以下Python 程式碼示範了用法os.chdir():
import os # Change the current working directory to 'new_dir' os.chdir('new_dir') # Print the current working directory print(os.getcwd())
自Python 3.11 起,可利用chdir() 上下文管理器來確保完成後返回原始工作目錄:
from contextlib import chdir with chdir('new_dir'): # Perform operations within the 'new_dir' directory # Execution continues in the original working directory
以上是Python 的 os.chdir() 函數如何模仿 Shell 的 cd 指令?的詳細內容。更多資訊請關注PHP中文網其他相關文章!