不能用str(list),
t=['\x87\xe9\xa5\xb0\xef\xbc']
In [28]: str(t)
Out[28]: "['\\x87\\xe9\\xa5\\xb0\\xef\\xbc']"

要用‘’.join(list)

In [29]: ''.join(t)
Out[29]: '\x87\xe9\xa5\xb0\xef\xbc'

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-06-06
  • 2021-06-26
  • 2021-10-01
  • 2022-12-23
  • 2022-12-23
  • 2021-10-16
相关资源
相似解决方案