下面的代码适用于
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,inf.write(os.urandom(10)) TypeError: write() argument must be str,not bytes
行为不同或如何解决这个问题的原因