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

相關文章
相關標籤/搜索