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()說明。