共计 491 个字符,预计需要花费 2 分钟才能阅读完成。
要将 Python 对象转换为 JSON 字符串,可以使用 json 模块的 dumps()
函数。下面是一个示例:
import json
# 创建一个 Python 对象
person = {
"name": "John",
"age": 30,
"city": "New York"
}
# 将 Python 对象转换为 JSON 字符串
json_string = json.dumps(person)
# 输出 JSON 字符串
print(json_string)
输出结果:
{"name": "John", "age": 30, "city": "New York"}
在上述示例中,我们首先导入了 json 模块。然后,创建了一个名为 person
的 Python 对象,它包含了姓名、年龄和城市的信息。
使用 json.dumps()
函数,将 Python 对象 person
转换为 JSON 字符串 json_string
。
最后,使用 print()
函数将 JSON 字符串输出到控制台。
请注意,json.dumps()
函数还提供了其他一些参数,比如 indent
用于指定缩进的空格数,sort_keys
用于指定是否对键进行排序等。你可以根据需要进行使用。
丸趣 TV 网 – 提供最优质的资源集合!
正文完