os.path.expanduser(path)

ディレクトリー名:os.path.expanduser(パス) は,パス中のホームディレクトリーの記号(Unis:`, Windows:User)を絶対パスにして返します.

プログラム例

import os.path

path = '~/hoge/fuga.txt'

res  = os.path.expanduser(path)

print(res)

実行結果

/home/yamamoto/hoge/fuga.txt