Python - json和simplejson比较(转)

From:https://stackoverflow.com/questions/712791/what-are-the-differences-between-json-and-simplejson-python-modules

加入python stdlib时间

json: 2.6

simplejson: 2.4+

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

一种代码导入实践:

try: 
    import simplejson as json
except ImportError: 
    import json

 

simplejson和json的性能:

For dumping, json is faster than simplejson. For loading, simplejson is faster.

posted @ 2018-04-26 15:15  泉水叮~咚  阅读(7884)  评论(0编辑  收藏  举报