码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2018-01-13 17:02:32      阅读:9337      评论:0      收藏:0      [点我收藏+]

标签:error   log   网上   body   文件打开   python3.6   str   handle   must   

小记一下,今天使用open打开文件的时候出现了下面的错误。

注:我用的是Python3.6.1版本。

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

网上搜索才发现原来是文件打开的方式有问题。

之前文件打开的语句是:

filehandle = open(WAV_FILE, ‘w‘)

然后使用二进制方式打开就没有这个问题:

filehandle = open(WAV_FILE, ‘wb+‘)

产生问题的原因是因为存储方式默认是二进制方式。

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

标签:error   log   网上   body   文件打开   python3.6   str   handle   must   

原文地址:https://www.cnblogs.com/luxj/p/8279227.html

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