美文网首页
Json单引号

Json单引号

作者: bluescorpio | 来源:发表于2018-04-18 11:13 被阅读32次

    You can dump JSON with double quote by:

    在使用Python解析JSON的时候发现一个问题:
    里面有单引号的时候JSON认为格式不对,而Python是不区分单引号和双引号的。

    所以在处理的时候要额外注意一下。

    from json import dumps
    
    #mixing single and double quotes
    data = {'jsonKey': 'jsonValue',"title": "hello world"}
    
    jsonString = json.dumps(data) 
    #get string with all double quotes
    

    相关文章

      网友评论

          本文标题:Json单引号

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