我对编码正则表达式有一些误解:
>>> simplejson.dumps({'title':r'\d+'})
'{"title": "\\\\d+"}'
>>> simplejson.loads('{"title": "\\\\d+"}')
{u'title': u'\\d+'}
>>> print simplejson.loads('{"title": "\\\\d+"}')['title']
\d+
因此,不使用printI see \\,使用printI see \。那么,加载 dict 的值包含什么 - with\\或 with \?