私はこれを持っています:
set_of_strings = {'abc', 'def', 'xyz'}
そして、私はこれを作成したい:
dict_of_dicts = {
'abc': {'pr': 0, 'wt': 0},
'def' : {'pr': 0, 'wt': 0},
'xyz' : {'pr': 0, 'wt': 0}
}
Pythonicの方法は何ですか?(パイソン2.7)
私はこれを持っています:
set_of_strings = {'abc', 'def', 'xyz'}
そして、私はこれを作成したい:
dict_of_dicts = {
'abc': {'pr': 0, 'wt': 0},
'def' : {'pr': 0, 'wt': 0},
'xyz' : {'pr': 0, 'wt': 0}
}
Pythonicの方法は何ですか?(パイソン2.7)