摘要: python中: import json s = '{"name":"xiaohei","age" : 18}' #把字符串反序列化成python中的数据类型 ret= json.loads(s) print(ret,type(ret)) #把字典序列化成python中的字符串 ret2 = jso 阅读全文
posted @ 2022-04-07 14:04 张丶先森 阅读(81) 评论(0) 推荐(0)