我正在运行 Python 2.7 (x64 Linux) 并尝试将 a 转换dict
为 JSON 对象。
>>> import sys
>>> sys.version_info
sys.version_info(major=2, minor=7, micro=0, releaselevel='final', serial=0)
我正在尝试使用simplejson
(从标准库回退json
),但出现以下错误:
>>> try: import simplejson as json
... except ImportError: import json
...
>>> metadata = dict()
>>> metadata['foo'] = 'bar'
>>> print metadata
{'foo': 'bar'}
>>> json.dumps(metadata)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'dumps'
json
在使用 Python 2.7或simplejson
与 Python 2.7 一起使用时,我有什么明显的遗漏吗?