1. 程式人生 > >python中讀取json文件報錯,TypeError:the Json object must be str, bytes or bytearray,not ‘TextIOWrapper’

python中讀取json文件報錯,TypeError:the Json object must be str, bytes or bytearray,not ‘TextIOWrapper’

bytes byte 解決 wrap 原因 nbsp 方法 應該 導致

利用python中的json讀取json文件時,因為錯誤使用了相應的方法導致報錯:TypeError:the Json object must be str, bytes or bytearray,not‘TextIOWrapper’。

解決方法:

首先要弄明白json有四個方法:dumps和loads、dump和load。其中,dumps和loads是在內存中轉換(python對象和json字符串之間的轉換),而dump和load則是對應於文件的處理。

出現這個錯誤的原因是自己用了loads方法去將json文件轉換為python對象,而正確的應該是使用load方法。


python中讀取json文件報錯,TypeError:the Json object must be str, bytes or bytearray,not ‘TextIOWrapper’