Python3现在抛出来自JSON文件

时间:2018-05-03 18:57:23

标签: python json load ascii

我对Python比较陌生,花了至少两个小时搜索互联网和现在的StackOverFlow并且无法找到问题所在。我的代码在Python2中工作,现在是持久性错误消息。我甚至在网上找到了这个代码,明确回答了我的问题,声称它在python3中有效,但它不适合我。奇

import json, sys

    with open('2689364.json', 'r', encoding='utf-8') as json_data:
        d = json.load(json_data)
    print(d)

UnicodeEncodeError:'ascii'编解码器无法编码位置1938中的字符'\ xb6':序数不在范围内(128)

0 个答案:

没有答案