首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >python 数组添加数组_Python添加到数组

python 数组添加数组_Python添加到数组

作者头像
用户7886150
修改2020-11-24 11:07:42
4.8K0
修改2020-11-24 11:07:42
举报
文章被收录于专栏:bit哲学院bit哲学院bit哲学院

参考链接: Python中的Array | 数组1(简介和功能)

python 数组添加数组

 Python doesn’t have any specific data type as an array. We can use List that has all the characteristics of an array.

  Python没有任何特定的数据类型作为数组。 我们可以使用具有数组所有特征的List。  

 Python array module can be used to create an array of integers and floating-point numbers.

  Python数组模块可用于创建整数和浮点数的数组。  

 If you want to do some mathematical operations on an array, you should use the NumPy module.

  如果要对数组进行一些数学运算,则应使用NumPy模块。  

  1. Python添加到数组 (1. Python add to Array) 

 If you are using List as an array, you can use its append(), insert(), and extend() functions. You can read more about it at Python add to List. 如果将List用作数组,则可以使用其append(),insert()和extend()函数。 您可以在Python add to List中阅读有关它的更多信息。 If you are using array module, you can use the concatenation using the + operator, append(), insert(), and extend() functions to add elements to the array. 如果使用的是数组模块,则可以使用+运算符,append(),insert()和extend()函数进行串联,以将元素添加到数组中。 If you are using NumPy arrays, use the append() and insert() function. 如果您使用的是NumPy数组,请使用append()和insert()函数。 

  2.使用数组模块将元素添加到数组 (2. Adding elements to an Array using array module) 

 Using + operator: a new array is returned with the elements from both the arrays. 使用+运算符:返回一个新数组,其中包含两个数组中的元素。 append(): adds the element to the end of the array. append():将元素添加到数组的末尾。 insert(): inserts the element before the given index of the array. insert():将元素插入到数组的给定索引之前。 extend(): used to append the given array elements to this array. extend():用于将给定的数组元素附加到此数组。 

 import array

arr1 = array.array('i', [1, 2, 3])

arr2 = array.array('i', [4, 5, 6])

print(arr1)  # array('i', [1, 2, 3])

print(arr2)  # array('i', [4, 5, 6])

arr3 = arr1 + arr2

print(arr3)  # array('i', [1, 2, 3, 4, 5, 6])

arr1.append(4)

print(arr1)  # array('i', [1, 2, 3, 4])

arr1.insert(0, 10)

print(arr1)  # array('i', [10, 1, 2, 3, 4])

arr1.extend(arr2)

print(arr1)  # array('i', [10, 1, 2, 3, 4, 4, 5, 6])

  3.向NumPy数组添加元素 (3. Adding elements to the NumPy Array) 

 append(): the given values are added to the end of the array. If the axis is not provided, then the arrays are flattened before appending. append():将给定值添加到数组的末尾。 如果未提供轴,则在附加之前将阵列弄平。 insert(): used to insert values at the given index. We can insert elements based on the axis, otherwise, the elements will be flattened before the insert operation. insert():用于在给定索引处插入值。 我们可以基于轴插入元素,否则,将在插入操作之前将元素展平。 

 >>> import numpy as np

>>> np_arr1 = np.array([[1, 2], [3, 4]])

>>> np_arr2 = np.array([[10, 20], [30, 40]])

>>> 

>>> np.append(np_arr1, np_arr2)

array([ 1,  2,  3,  4, 10, 20, 30, 40])

>>>

>>> np.append(np_arr1, np_arr2, axis=0)

array([[ 1,  2],

       [ 3,  4],

       [10, 20],

       [30, 40]])

>>>

>>> np.append(np_arr1, np_arr2, axis=1)

array([[ 1,  2, 10, 20],

       [ 3,  4, 30, 40]])

>>> 

>>> np.insert(np_arr1, 1, np_arr2, axis=0)

array([[ 1,  2],

       [10, 20],

       [30, 40],

       [ 3,  4]])

>>> 

>>> np.insert(np_arr1, 1, np_arr2, axis=1)

array([[ 1, 10, 30,  2],

       [ 3, 20, 40,  4]])

>>>

  4.参考 (4. References) 

 array module 阵列模组 numpy.append() docs numpy.append()文档 

  翻译自: https://www.journaldev.com/33185/python-add-to-array

 python 数组添加数组

本文系转载,前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文系转载前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档