脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - 详解【python】str与json类型转换

详解【python】str与json类型转换

2021-06-21 01:02sysu_lluozh Python

这篇文章主要介绍了【python】str与json类型转换,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

在写接口测试框架时。避免不了数据类型的转换,比如强制转换string类型,比如转json类型

str转json

python字符串转json对象,需要使用json模块的loads函数

?
1
2
3
4
5
6
7
import json
str = '{"accesstoken": "521de21161b23988173e6f7f48f9ee96e28", "user-agent": "apache-httpclient/4.5.2 (java/1.8.0_131)"}'
 
j = json.loads(str)
 
print(j)
print(type(j))

输出

{'accesstoken': '521de21161b23988173e6f7f48f9ee96e28', 'user-agent': 'apache-httpclient/4.5.2 (java/1.8.0_131)'}
<class 'dict'>

 json转str

?
1
2
3
4
5
6
7
import json
j = {"accesstoken": "521de21161b23988173e6f7f48f9ee96e28", "user-agent": "apache-httpclient/4.5.2 (java/1.8.0_131)"}
 
str = json.dumps(j)
 
print(str)
print(type(str))

输出

{"accesstoken": "521de21161b23988173e6f7f48f9ee96e28", "user-agent": "apache-httpclient/4.5.2 (java/1.8.0_131)"}
<class 'str'>

问题

写这篇文章主要是为了mark一个问题,在str转json时,str格式引号问题导致失败报错

看看下面这段代码

?
1
2
3
4
5
6
7
8
import json
str = "{'accesstoken': '521de21161b23988173e6f7f48f9ee96e28', 'user-agent': 'apache-httpclient/4.5.2 (java/1.8.0_131)'}"
 
j = json.loads(str)
 
print(j)
print(type(j))

咋一看没啥问题,但是出现错误

json.decoder.jsondecodeerror: expecting property name enclosed in double quotes: line 1 column 2 (char 1)

为什么呢?

字符串中,双引号在外围,单引号在内嵌,导致转换失败

以上所述是小编给大家介绍的【python】str与json类型转换详解整合,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!

原文链接:https://blog.csdn.net/lluozh2015/article/details/75092877

延伸 · 阅读

精彩推荐