字符串字典到 Unicode 的转换

String Dict to Unicode conversion

我想知道是否有任何直观的功能可用于从字符串字典到 unicode 字典。

输入:

{'name': 'Lexus', 'model': 'GS F'}

预期输出:

{u'name': u'Lexus', u'model': u'GS F'}
>>> d={'name': 'Lexus', 'model': 'GS F'}
>>> d={k.decode('utf8'): v.decode('utf8') for k, v in d.items()}

输出:

{u'model': u'GS F', u'name': u'Lexus'}