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更新快。

一种代码导入实践:

try: 
    import simplejson as json
except ImportError: 
    import json

猜你喜欢

转载自www.cnblogs.com/xiaoerlang/p/8952604.html