TypeError: write() argument must be str, not bytes

问题

在用爬虫抓取数据,写入文件的时候抛出异常,信息如下:

Traceback (most recent call last):
  File "/Users/***/05-shizhan-demo.py", line 54, in 
    demo()
  File "/Users/***/05-shizhan-demo.py", line 50, in demo
    f.write(dumps.encode('utf-8'))
TypeError: write() argument must be str, not bytes

原因:

文件打开方式有问题,pickle存储方式默认是二进制方式。

解决方案:

把之前的打开语句修改为用二进制方式打开,中文不会乱码 。

    with open('duanzi.json', 'wb') as f:
        f.write(dumps.encode('utf-8'))

你可能感兴趣的:(python)