0
我想開Python中的JSON文件和我有錯誤:的UnicodeDecodeError當導入JSON文件
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 64864: ordinal not in range(128)
我的代碼非常簡單:
# -*- coding: utf-8 -*-
import json
with open('birdw3l2.json') as data_file:
data = json.load(data_file)
print(data)
有人能幫助我嗎?謝謝!
不會改變任何事情:( – jiayi
@jiayi嘗試更新的一個 –
沒有它總是同樣的問題。其實,即使我不做打印,錯誤仍然存在...... – jiayi