os.path.join Python基本事項 ディレクトリとファイル名を連結する。 import os s = ['usr', 'local', 'etc'] print(os.path.join(*s)) (実行結果) Linuxの場合 usr/local/etc