如何将字典列表拆分为单独的字典?

时间:2019-10-10 23:22:07

标签: python dictionary unnest

如何将词典列表拆分为单独的词典?

dict_example = [{'limited': 1, 'all': 16, 'concept': 1, 'secondly': 1}, {'hello': 3, 'bye': 6}]

所需的输出:

dict_1: {'limited': 1, 'all': 16, 'concept': 1, 'secondly': 1}
dict_2: {'hello': 3, 'bye': 6}

1 个答案:

答案 0 :(得分:-1)

git add