两种方法: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'> 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'>