美文网首页
python:json

python:json

作者: 风铃_2a53 | 来源:发表于2018-09-17 14:18 被阅读0次

    1.dumps:json     的序列化 将dict类型的数据转成str。

    dit={"name":"hh","age":90}

    json.dumps(dit)

    >>>"{"name":"hh","age":90}"

    1.2、dump:将dict类型的数据转成str,并存入json文件中

    2.loads:json的反序列化,将str类型的数据转成dict。

    yy="{"name":"hh","age":90}

    json.loads(yy)

    >>>{"name":"hh","age":90}

    相关文章

      网友评论

          本文标题:python:json

          本文链接:https://www.haomeiwen.com/subject/xmgogftx.html