Python 3 将字节(bytes)转换成字符串(string)的方法

如题,示例代码如下: >> b”abcde”.decode(“utf-8”) ‘abcde’ 上面