Python

Python 環境変数を取得する

os.environで辞書で取得できます。以下のようにすると一覧で表示できます。

import os
for k, v in os.environ.items():
    print(k + " = " + v)