python3报错:TypeError: can't concat bytes to str

有时会报错这个:TypeError: Can’t convert ‘bytes’ object to str implicitly

解决方法:使用字节码的decode()方法。

示例:

str = 'I am string'
byte = b' I am bytes'
s = str + byte
print(s)

  这时会报错:TypeError: Can’t convert ‘bytes’ object to str implicitly

解决方法:

s = str + byte.decode()

  

 

    原文作者:那时的吻狠陶醉
    原文地址: https://www.cnblogs.com/fh-fendou/p/8310425.html
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞