How to convert Unicode string to dictionary? [dupl

2019-08-11 17:26发布

This question already has an answer here:

I have a string with utf-8 encoding, like

>>> print s
"{u'name':u'Pradip Das'}"

Basically I load some data from JSON file and it loads as above. Now, I want to covert this string in to python dictionary. So I can do like:

>>> print d['name']
'Pradip Das'

2条回答
不美不萌又怎样
2楼-- · 2019-08-11 18:03

Use EVAL to convert string to dictionary.

d=eval(s)
print d['name']

Let me know if there are any batter way to do so.

查看更多
混吃等死
3楼-- · 2019-08-11 18:05

You can use the built-in ast.literal_eval:

>>> import ast
>>> a = ast.literal_eval("{'a' : '1', 'b' : '2'}")
>>> a
{'a': '1', 'b': '2'}
>>> type(a)
<type 'dict'>

This is safer than using eval. As the docs itself recommends it:

>>> help(ast.literal_eval)
Help on function literal_eval in module ast:

literal_eval(node_or_string)
    Safely evaluate an expression node or a string containing a Python
    expression.  The string or node provided may only consist of the following
    Python literal structures: strings, numbers, tuples, lists, dicts, booleans,
    and None.

Additionally, you can read this article which will explain why you should avoid using eval.

查看更多
登录 后发表回答