[151] 현재 디렉토리 확인하고 바꾸기(os.getcwd, os.chdir)

책 내용에 대한 무단배포 방지를 위해 최소한으로 정리

import os

pdir = os.getcwd();print(pdir)
os.chdir('..');print(os.getcwd())
os.chdir(pdir);print(os.getcwd())

Comments