TypeError:write()参数必须是str,而不是字节(Python 3 vs Python 2)

前端之家收集整理的这篇文章主要介绍了TypeError:write()参数必须是str,而不是字节(Python 3 vs Python 2)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
下面的代码适用于 python 2.7.13
import os
with open('random.bin','w') as f:
    f.write(os.urandom(10))

但抛出python 3的错误
3.6.0 | Anaconda 4.3.0(64位)| (默认,2016年12月23日,11:57:41)[MSC v.1900 64 bit(AMD64)]

Traceback (most recent call last): File
“C:/Users/hsingh/PycharmProjects/Item3.py”,line 3,in

f.write(os.urandom(10)) TypeError: write() argument must be str,not bytes

行为不同或如何解决这个问题的原因

解决方法

在Python 3中,无论是以二进制还是文本模式打开文件,都会有所不同.只需添加b标志即可使其成为二进制:
with open('random.bin','wb') as f:

这也适用于Python 2.

原文链接:https://www.f2er.com/python/446496.html

猜你在找的Python相关文章