TypeError: write() argument must

作者: 喝奶茶不加奶茶 | 来源:发表于2020-10-25 18:10 被阅读0次

错误描述:

 with open('aaa.txt', 'w') as f2:
        f2.write(result)

解决方法:

使用二进制写入模式(‘wb’)来开启待操作文件,采用字符写入模式(‘w’)。

with open('aaa.txt', 'wb') as f2:
        f2.write(result)

即可解决。

相关文章

网友评论

    本文标题:TypeError: write() argument must

    本文链接:https://www.haomeiwen.com/subject/xqunmktx.html