TypeError: write() argument must be str, not bytes报错
程序员文章站
2022-07-12 14:28:38
...
最近在爬取拉勾网城市json文件遇到问题:
TypeError: write() argument must be str, not bytes
python2中可以写入二进制文件
with open("lagoucity.json", "w") as f:
f.write(array.encode("utf-8"))
但使用Python3会报错
TypeError: write() argument must be str, not bytes
原因:先了解一下UTF-8编码,UTF-8(8-bit Unicode Transformation Format)是一种针对Unicode的可变长度字符编码,共有8个二进制位。程序中如果直接f.write(array)则不会出错,但是因为array是unicode编码,所以json文件会出错,全是乱码,如果是f.write(array.encode(“utf-8”))则会出错,是因为open函数目前支持的是"w",不支持二进制文件写入。
解决方法:
使用二进制写入模式(‘wb’)来开启待操作文件,而不能像原来那样,采用字符写入模式(‘w’)。
with open("lagoucity.json", "wb") as f:
f.write(array.encode("utf-8"))
文件读取数据的时候也有类似的问题。解决这种问题的办法也相似:用’rb’模式(二进制模式)打开文件,而不要使用’r’模式。
推荐阅读
-
解决报错:TypeError: argument should be integer or bytes-like object, not ‘str‘
-
TypeError: join() argument must be str or bytes, not ‘PosixPath‘
-
编译安卓源码提示:TypeError: argument should be integer or bytes-like object, not ‘str‘
-
TypeError: the JSON object must be str, bytes or bytearray, not NoneType
-
TypeError: write() argument must be str, not bytes报错
-
Python报错:TypeError: the JSON object must be str, bytes or bytearray, not ‘dict‘
-
Python网络编程报错TypeError: a bytes-like object is required, not 'str' 的解决办法
-
Python网络编程报错TypeError: a bytes-like object is required, not 'str' 的解决办法
-
Python报错:TypeError: the JSON object must be str, bytes or bytearray, not ‘dict‘
-
TypeError:write() argument must be str, not bytes