Python - json和simplejson比较(转)

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

加入python stdlib时间json

json: 2.6性能

simplejson: 2.4+spa

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

一种代码导入实践:blog

try: 
    import simplejson as json
except ImportError: 
    import json

 

simplejson和json的性能:get

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

相关文章
相关标签/搜索