python:json 和simple json

一、加入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)