gpt4 book ai didi

python - 尝试用python读取json文件

转载 作者:太空宇宙 更新时间:2023-11-03 17:20:26 24 4
gpt4 key购买 nike

我有一个 json 文件,它是法语的同义词词典(我说法语是因为我收到一 strip 有 ascii 编码的错误消息...由于重音符号“é”等)。我想用 python 读取这个文件,以便在输入单词时获得同义词。好吧,我什至无法读取我的文件......这是我的代码:

data=[]
with open('sortieDES.json', encoding='utf-8') as data_file:
data = json.loads(data_file.read())
print(data)

所以我有一个很难看的列表,但我的问题是:如何像字典一样使用该文件?我想输入 data['Académie'] 并获得同义词列表...这是 json 文件的示例:

{"Académie française":{
"synonymes":["Institut","Quai Conti","les Quarante"]
}

最佳答案

您只需要在 File 对象上调用 json.load(您为其指定了名称 data_file):

data=[]
with open('sortieDES.json', encoding='utf-8') as data_file:
data = json.load(data_file)
print(data)

关于python - 尝试用python读取json文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33223475/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com