美文网首页
python:json 和simple json

python:json 和simple json

作者: testerclub | 来源:发表于2020-06-15 11:05 被阅读0次

一、加入python stdlib时间

    json: 2.6

    simplejson: 2.4+

二、simplejson比json更新快, simplejson支持的python版本范围更广。

三、一种代码导入实践:

```

try:

    import simplejson as json

except ImportError:

    importjson

```

四、simplejson和json的性能:

    For dumping, jsonis faster thansimplejson. 

   For loading, simplejsonis faster.

相关文章

网友评论

      本文标题:python:json 和simple json

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