os.path.join

ディレクトリとファイル名を連結する。

import os

s = ['usr', 'local', 'etc']
print(os.path.join(*s))

(実行結果) Linuxの場合

usr/local/etc