在Python中,可以使用append()方法向空数组中添加元素。以下是一个示例:
append()
arr = [] # 创建一个空数组 arr.append(1) # 向数组中添加元素1 arr.append(2) # 向数组中添加元素2 print(arr) # 输出数组内容:[1, 2]
append()方法将元素添加到数组的末尾。