1. 程式人生 > >python json utf-8亂碼

python json utf-8亂碼

原文連結:https://blog.csdn.net/celte/article/details/37820067 

讀取的json檔案,然後輸出後亂碼。

亂碼均為\\u4e00\\u4e2a\\u7ea2\\u4eba\\u7684形式

解決方案:

data=json.load(file('test.json'))
jsonobj=json.dumps(data, ensure_ascii=False).encode('utf-8') 
print jsonobj