我有这个字符串(代表一个 JSON 值):
BABEL_JSON = "{
'BD': u'Bangladesh',
'WF': u'Wallis y Futuna',
'BF': u'Burkina Faso'
}"
我需要转换成这样的 List 对象:
BABEL_LIST = [
("BD", u"Bangladesh"),
("WF", u"Wallis y Futuna"),
("BF", u"Burkina Faso")
]
什么是最好的方法?首先我尝试过:
import json
BABEL_LIST = json.loads(str(BABEL_JSON))
但我有这个错误:
TypeError: 'NoneType' object is not callable