共计 629 个字符,预计需要花费 2 分钟才能阅读完成。
json.dumps()函数用于将 Python 对象编码为 JSON 格式的字符串。它的使用方式如下:
import json
# 创建一个 Python 对象
data = {"name": "John",
"age": 30,
"city": "New York"
}
# 使用 json.dumps()将 Python 对象编码为 JSON 格式的字符串
json_string = json.dumps(data)
# 打印编码后的 JSON 字符串
print(json_string)
输出结果:
{"name": "John", "age": 30, "city": "New York"}
你可以通过指定一些参数来定制编码过程。例如,你可以使用 indent
参数来指定缩进的空格数量,使输出的 JSON 字符串更易读。示例如下:
import json
data = {"name": "John",
"age": 30,
"city": "New York"
}
# 使用 indent 参数指定缩进空格数量为 4
json_string = json.dumps(data, indent=4)
print(json_string)
输出结果:
{
"name": "John",
"age": 30,
"city": "New York"
}
除了 indent
参数外,json.dumps()
函数还有其他一些可选参数,如 sort_keys
、separators
等,可以根据需求进行设置。详细的使用方式可参考 Python 官方文档中的 json.dumps()说明。
丸趣 TV 网 – 提供最优质的资源集合!
正文完