python working directory 확인 및 변경

import os

# 현재 작업 디렉토리 확인
pwd
currnet_path = os.getcwd()

# 작업 디렉토리 변경
os.chdir('경로 지정')