5小时前关门了。Improve this questionElements can be added to an array了解如何在python中向数组添加值
k3bvogb11#
在python中,你有几种不同的方法可以添加元素到数组中,首先你可以使用.append方法,它可以像这样添加一个元素到数组的后面。
arr = [1, 2, 3] arr.append(4) # arr is now [1, 2, 3, 4]
另一种在python中向数组添加元素的方法是使用insert方法,它允许你在数组的任意索引处插入一个值,就像这样。
arr = [1, 2, 3] arr.insert(0, 5) #arr is now [5, 1, 2, 3]
insert中的第一个参数是要插入元素的索引,第二个参数是要插入的值。
lvmkulzt2#
a是我们的数组a.append('somehting')将something添加到a的末尾a.extend(['s','m','t','h','n','g'])向a添加另一个数组(['s','m','t','h','n','g']a.insert(position, value)将value添加到a中的某个position(应该是int)
a
a.append('somehting')
something
a.extend(['s','m','t','h','n','g'])
['s','m','t','h','n','g']
a.insert(position, value)
value
position
int
2条答案
按热度按时间k3bvogb11#
在python中,你有几种不同的方法可以添加元素到数组中,首先你可以使用.append方法,它可以像这样添加一个元素到数组的后面。
另一种在python中向数组添加元素的方法是使用insert方法,它允许你在数组的任意索引处插入一个值,就像这样。
insert中的第一个参数是要插入元素的索引,第二个参数是要插入的值。
lvmkulzt2#
a
是我们的数组a.append('somehting')
将something
添加到a
的末尾a.extend(['s','m','t','h','n','g'])
向a
添加另一个数组(['s','m','t','h','n','g']
a.insert(position, value)
将value
添加到a
中的某个position
(应该是int
)