1. ホーム
  2. python

[解決済み] Pythonの変数をdictのキーにする

2023-04-01 04:52:44

質問

Python (2.7) でこれを行う簡単な方法はありますか?注:これは、すべてのローカル変数を辞書に入れるような、派手なものではありません。私がリストで指定するものだけです。

apple = 1
banana = 'f'
carrot = 3
fruitdict = {}

# I want to set the key equal to variable name, and value equal to variable value
# is there a more Pythonic way to get {'apple': 1, 'banana': 'f', 'carrot': 3}?

for x in [apple, banana, carrot]:
    fruitdict[x] = x # (Won't work)

どのように解決するのですか?

for i in ('apple', 'banana', 'carrot'):
    fruitdict[i] = locals()[i]