쉘 명령 '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()` 함수는 어떻게 셸의 `cd` 명령을 모방합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!