ウェブ開発に関するメモ帳です。
現在のディレクトリを取得
import os
cwd = os.getcwd()
print(cwd) # /Users/demo-user/documents/mydir
ディレクトリを変更
os.chdir('/Library')
print(cwd) # /Library