JSON的字典列表到python

时间:2017-09-12 00:22:07

标签: python json

我的json文件是一个字典列表 enter image description here

我能够成功打开它,但我不知道如何访问" the_dict"字典,所以我可以检索和打印"测试"和"馅饼"在我的python程序中。

with open('my_settings.json') as json_data:
    config = json.load(json_data)

# my_words = config["the_dict"] is what I tried but this does not work

1 个答案:

答案 0 :(得分:5)

config_file是一个列表,而不是字典,正如您所观察到的那样。您需要访问列表中的第一个字典,然后调用密钥"the_dict",然后调用"words"以获取字词列表:

my_words = config_file[0]["the_dict"]["words"]