Python - json和simplejson比较(转)
本站寻求有缘人接手,详细了解请联系站长QQ1493399855
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