要把字典轉換為字符串,可以使用json庫中的dumps()函數。下面是使用json庫將字典轉換為字符串的示例代碼:
import json
dict_obj = {'name': 'Alice', 'age': 25}
# 將字典轉換為字符串
json_str = json.dumps(dict_obj)
print(json_str)
輸出結果:
{"name": "Alice", "age": 25}
另外,如果想要將字典轉換為格式化的字符串,可以使用dumps()函數的indent參數。例如:
import json
dict_obj = {'name': 'Alice', 'age': 25}
# 將字典轉換為格式化的字符串
json_str = json.dumps(dict_obj, indent=4)
print(json_str)
輸出結果:
{
"name": "Alice",
"age": 25
}