#
###################
<
class
'
dict
'
>
str_d: {
'
name
'
:
'
lisa
'
,
'
gender
'
:
'
male
'
}
str_d的类型
<
class
'
str
'
>
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'>