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

TypeError: a bytes-like object is required, not 'str'

时间:2018-03-12 17:02:25      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:error:   post   not   required   target   bytes   obj   nbsp   str   


 python bytes和str两种类型转换的函数encode(),decode()

  • str通过encode()方法可以编码为指定的bytes
  • 反过来,如果我们从网络或磁盘上读取了字节流,那么读到的数据就是bytes。要把bytes变为str,就需要用decode()方法

例如:

date=“12345”  #str类型

date.encode()  #转换为bytes类型

TypeError: a bytes-like object is required, not 'str'

标签:error:   post   not   required   target   bytes   obj   nbsp   str   

原文地址:https://www.cnblogs.com/cxx1/p/8549443.html

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