Python中json.dumps()函数怎么使用

71次阅读
没有评论

共计 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_keysseparators 等,可以根据需求进行设置。详细的使用方式可参考 Python 官方文档中的 json.dumps()说明。

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2024-02-05发表,共计629字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)