我有以下json:
{"Rotações": "string"}
这个python脚本带有相应的结果:
import json
with open('apaga.json') as jsonin:
jsondict = json.load(jsonin)
print(jsondict)
> {'Rotações': 'string'}
所以我不知道如何调用此Rotações
密钥,因为它对应于Rotações
。
以下不起作用:
print(jsondict['Rotações'.encode('latin')])
> KeyError: b'Rota\xe7\xf5es'
答案 0 :(得分:0)
尝试解码为"utf-8"
<强>实施例强>
print(jsondict['Rotações'.decode('utf-8')])
在 python2.7
中测试