python3 将bytes转为字符串
bytes_str = b'\xe9\x98\xbf\xe6\x89\x81\xe6\x8e\xa8\xe7\xbf\xbb' # b的表示bytes类型, u表示为unicode编码
test_str = str(bytes_str, encoding='utf-8')
bytes_str = b'\xe9\x98\xbf\xe6\x89\x81\xe6\x8e\xa8\xe7\xbf\xbb' # b的表示bytes类型, u表示为unicode编码
test_str = str(bytes_str, encoding='utf-8')