python json数组 添加元素

在 Python 中,将 JSON 数组转换为列表之后就可以使用列表的方法对其进行操作。例如,如果您想要添加元素到数组,可以使用 append 方法。

import json
data = '[1, 2, 3]'
arr = json.loads(data)
arr.append(4)
print(json.dumps(arr)) # [1, 2, 3, 4]

同样,您也可以使用 extend 方法来扩展列表。

import json
data = '[1, 2, 3]'
arr = json.loads(data)
arr.extend([4, 5, 6])
print(json.dumps(arr)) # [1, 2, 3, 4, 5, 6]
  •