[Python]json对象转换出错expected string or buffer python
2021-07-12 04:04
标签:分析 exp 方法 字符串 ESS 引号 解决 load 调试 【问题】 今天在使用python中的json转换碰到一个问题: 错误显示: expected string or buffer json内容如下: {u‘err_no‘: 0, u‘corpus_no‘: u‘6594675362334657196‘, u‘err_msg‘: u‘success.‘, u‘result‘: [u‘\uff0c‘], u‘sn‘: u‘829195370711535442509‘} 经过调试,最终发现,python中默认使用单引号表示字符串"‘" 所以当,使用字符串符值以后,python会把双引号转换为单引号。 而json是不支持单引号的。可以用下面的方法转换 json_string=json.dumps(s) str=json.loads(json_string) [Python]json对象转换出错expected string or buffer python 标签:分析 exp 方法 字符串 ESS 引号 解决 load 调试 原文地址:https://www.cnblogs.com/tibetanmastiff/p/9549222.html【分析解决】
下一篇:java 模拟单链表操作
文章标题:[Python]json对象转换出错expected string or buffer python
文章链接:http://soscw.com/index.php/essay/103984.html