python中字典转字符串单引号变双引号两种⽅法:str()以及json.dumps()
注意:单引号双引号的区别
str⽅法将其变为单引号,json.dumps⽅法仍是双引号
初始字典为双引号
import json
d={"name":"lisa","gender":"male"}
print(type(d))
str_d=str(d)
print("str_d:",str_d)
print("str_d的类型",type(str_d))
json_d=json.dumps(d)
print("json_d:",json_d)
print("json_d的类型",type(json_d))
>>>>
<class'dict'>
str_d: {'name': 'lisa', 'gender': 'male'}
str_d的类型 <class'str'>
python json字符串转数组json_d: {"name": "lisa", "gender": "male"}
json_d的类型 <class'str'>
初始字典为单引号
d={'name':'lisa','gender':'male'}
print(type(d))
str_d=str(d)
print("str_d:",str_d)
print("str_d的类型",type(str_d))
json_d=json.dumps(d)
print("json_d:",json_d)
print("json_d的类型",type(json_d))
>>>>##
<class'dict'>
str_d: {'name': 'lisa', 'gender': 'male'}
str_d的类型 <class'str'>
json_d: {"name": "lisa", "gender": "male"}
json_d的类型 <class'str'>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。

Java转JSON串
« 上一篇
listjson的例子
下一篇 »

发表评论