Python Python 環境変数を取得する hawk 2020-06-09 os.environで辞書で取得できます。以下のようにすると一覧で表示できます。 import os for k, v in os.environ.items(): print(k + " = " + v)