python修改json的值
时间: 2023-07-26 10:42:50 浏览: 119
利用python修改json文件的value方法
要修改 JSON 中某个键的值,可以按照以下步骤:
1.将 JSON 字符串转换为 Python 对象。
2.修改 Python 对象中的键值。
3.将 Python 对象转换回 JSON 字符串。
下面是一个示例代码:
```python
import json
# 假设 JSON 字符串如下:
json_str = '{"name": "Alice", "age": 25}'
# 将 JSON 字符串转换为 Python 对象
json_obj = json.loads(json_str)
# 修改 name 的值
json_obj['name'] = 'Bob'
# 将 Python 对象转换回 JSON 字符串
new_json_str = json.dumps(json_obj)
print(new_json_str) # 输出: {"name": "Bob", "age": 25}
```
在上面的示例中,我们将 JSON 字符串 `json_str` 转换为 Python 对象 `json_obj`,然后修改了 `name` 的值,最后将 Python 对象转换回 JSON 字符串 `new_json_str`。
阅读全文