在python中将字符串转为json对象并取值的方法
作者:u_ZJL_FFF 时间:2022-12-19 02:22:37
如下所示:
string =" {
"status": "error",
"messages": ["Could not find resource or operation 'BZK1.MapServer' on the system."],
"code": 404
}"
print '对象:' string
print '取值:' json.loads(string)['code']
输出结果为:
对象:{u'status': u'error', u'code': 404, u'messages': [u"Could not find resource or operation 'BZK1.MapServer' on the system."]}
取值:404
将对象转成字符串:
resultJson = {"state": 1}
print json.dumps(resultJson)
分别使用了Json包中的loads()方法和dumps()方法
来源:https://blog.csdn.net/u_ZJL_FFF/article/details/79611366
标签:python,字符串,json,取值
0
投稿
猜你喜欢
ubutu 16.04环境下,PHP与mysql数据库,网页登录验证实例讲解
2023-11-22 08:18:27
用python实现读取xlsx表格操作
2022-11-26 17:08:19
python3.3教程之模拟百度登陆代码分享
2023-08-02 23:08:23
基于Python Dash库制作酷炫的可视化大屏
2022-09-13 14:20:32
Tensorflow tf.nn.depthwise_conv2d如何实现深度卷积的
2021-10-23 19:00:50
Pytorch中torch.argmax()函数使用及说明
2021-11-24 14:49:31
10款最好的Python开发编辑器
2022-02-14 07:35:28
Python 实现任意区域文字识别(OCR)操作
2021-04-23 03:52:37
mysql数据库无法被其他ip访问的解决方法
2024-01-25 09:04:57
python利用标准库如何获取本地IP示例详解
2021-10-17 07:46:07
js取得当前网址
2024-04-10 11:03:14
永不熄灭的爱心图标——腾讯公益月捐计划 “QQ首席图标”诞生记
2009-09-01 19:43:00
Python PyPDF2模块安装使用解析
2023-02-27 15:13:52
Python Django给admin添加Action的方法实例详解
2023-10-30 13:11:35
Python利用LyScript插件实现批量打开关闭进程
2021-10-07 04:46:15
Python函数中4种参数的使用教程
2023-03-06 23:06:03
python实现图像高斯金字塔的示例代码
2023-05-06 02:02:32
如何利用python实现词频统计功能
2021-05-01 16:38:21
python中使用Celery容联云异步发送验证码功能
2023-07-29 08:27:06
Python 解决OPEN读文件报错 ,路径以及r的问题
2022-06-12 11:06:41