python:字符串转换为字典

2019-01-05  本文已影响0人  慢半帧

python将字符串转换为字典:
比如字符串:

user_info = '{"name" : "john", "gender" : "male", "age": 28}'

我们想把它转为下面的字典:

user_dict = {"name" : "john", "gender" : "male", "age": 28}
import json
user_info= '{"name" : "john", "gender" : "male", "age": 28}'
user_dict = json.loads(user_info)
print(user_dict)

原文链接:http://www.manbanzhen.top/?p=233

上一篇下一篇

猜你喜欢

热点阅读