标签: python json python-3.6 decode
我有json字符串,我需要加载它,但是它来自TCP套接字,所以以字节为单位。 utf-8无法正常解码,因为在thah字符串中,浮点数为4字节格式。
data = b'{"X1":"Cf\x19\x9a","X2":"\x00\x00\x00\x00"}'
如何将其加载到json.loads中?