有时候请求一个网站的 API 后会得到 str 格式的 json数据。。 如:
text = '{ "firstName":"John" , "lastName":"Doe" }' # <class 'str'>
这时候可以使用 json.loads() 将它转化回 json 。
text = '{"firstName":"John" , "lastName":"Doe"}'
json_text = json.loads(text) # <class 'dict'>
如图.
有时候请求一个网站的 API 后会得到 str 格式的 json数据。。 如:
text = '{ "firstName":"John" , "lastName":"Doe" }' # <class 'str'>
这时候可以使用 json.loads() 将它转化回 json 。
text = '{"firstName":"John" , "lastName":"Doe"}'
json_text = json.loads(text) # <class 'dict'>
如图.
本文标题:将 str 转化为 json
本文链接:https://www.haomeiwen.com/subject/bjcoattx.html
网友评论