码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2017-09-08 11:45:45      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:with   pytho   typeerror   python   close   body   blog   方式   bytes   

w文件打开以 ‘二进制‘  方式:

with open(‘teacher.html‘,‘wb+‘) as f:
    f.write(response.body)

 

要写入"中文",防止乱码:

fo = open("temp.txt", "wb+")
str = ‘中文‘
str = str.encode(‘utf-8‘)
fo.write(str)
fo.close()

  

  

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

标签:with   pytho   typeerror   python   close   body   blog   方式   bytes   

原文地址:http://www.cnblogs.com/AndyChen2015/p/7493332.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!