在Python 中提取json字符串:
json={"str":"test1","tests":"{"test2":"testes"}"}
提取字符时先执行
res=json.loads(str)
然后定义提取哪个字段:
如提取test1作为参数:
name=res["srt"]
提取test2作为参数:
names=res["tests"]["test2"]
如果JSON是这样的:
json={'str':'test1','tests':'{'test2':'testes'}'}
使用
res=json.loads(str)会报错
json.decoder.JSONDecodeError: Expecting property name enclosed in double quotes: line 1 column 2 (char 1)
解决方案:
先使用
tt=json.dumps(json)
然后在执行
res=json.loads(tt)
网友评论