python 转义 json
时间: 2023-04-09 10:04:43 浏览: 115
python Excel 转为 json格式.zip
可以使用 json.dumps() 方法将 Python 对象转换为 JSON 字符串,例如:
import json
data = {'name': 'John', 'age': 30, 'city': 'New York'}
json_string = json.dumps(data)
print(json_string)
输出结果为:
{"name": "John", "age": 30, "city": "New York"}
注意:在 JSON 中,字符串必须使用双引号,而不是单引号。
阅读全文