python数组后加0
时间: 2024-06-03 15:05:06 浏览: 179
python数组 python数组方法
在Python中,数组的长度是可以动态变化的,因此在数组的末尾添加一个元素0非常简单。你可以使用append()方法将0添加到数组的末尾,也可以使用"+"运算符将0添加到数组的末尾。以下是示例代码:
```
# 使用append()方法将0添加到数组的末尾
arr = [1, 2, 3]
arr.append(0)
print(arr) # [1, 2, 3, 0]
# 使用"+"运算符将0添加到数组的末尾
arr = [1, 2, 3]
arr = arr +
print(arr) # [1, 2, 3, 0]
```
阅读全文