报错内容:TypeError: expected bytes-like object, not str
例:
a = base64.b64encode(temp)
改为:
a = base64.b64encode(bytes(temp, 'utf-8'))
问题解决!
报错内容:TypeError: expected bytes-like object, not str
例:
a = base64.b64encode(temp)
改为:
a = base64.b64encode(bytes(temp, 'utf-8'))
问题解决!
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。