美文网首页
python:字符串转换为字典

python:字符串转换为字典

作者: 慢半帧 | 来源:发表于2019-01-05 00:15 被阅读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)
    
    • 由于 json 语法规定 数组或对象之中的字符串必须使用双引号,不能使用单引号

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

    相关文章

      网友评论

          本文标题:python:字符串转换为字典

          本文链接:https://www.haomeiwen.com/subject/vdvlrqtx.html