python如何把json处理为字符串
Python可以使用内置的json模块来处理JSON数据。
将JSON转换为字符串:
import json
data = {"name": "John", "age": 30, "city": "New York"}
json_str = json.dumps(data)
print(json_str)
输出:
{"name": "John", "age": 30, "city": "New York"}
在上面的示例中,json.dumps()函数将Python字典转换为JSON字符串。
如果要在输出结果中包含缩进和排序,可以使用以下代码:
import json
data = {"name": "John", "age": 30, "city": "New York"}
json_str = json.dumps(data, indent=4, sort_keys=True)
print(json_str)
输出:
{
"age": 30,
"city": "New York",
"name": "John"
}
在这个例子中,indent参数设置为4,它将输出缩进为4个空格的JSON字符串。sort_keys参数设置为True,它将按键排序。
原文地址: https://www.cveoy.top/t/topic/ggp 著作权归作者所有。请勿转载和采集!