import json a = b'{"name": "sss", "age": 18, "hobby": "music"}' # 二进制 z = a.decode('utf8') # 将二进制转成json格式字符串 c = json.loads(z) ...
確定! 回上一頁