python 数组添加数组_Python添加到数组[通俗易懂]

python 数组添加数组_Python添加到数组[通俗易懂]python数组添加数组Pythondoesn’thaveanyspecificdatatypeasanarray.WecanuseListthathasallthecharacteristicsofanarray.Python没有任何特定的数据类型作为数组。我们可以使用具有数组所有特征的List。Pythonarraymodulecan…

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全系列IDE使用 1年只要46元 售后保障 童叟无欺

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 arrayarr1 = 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 + arr2print(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)

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

python 数组添加数组

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/170331.html原文链接:https://javaforall.net

(0)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • javastream流详解_Java获取文件流的所有方式

    javastream流详解_Java获取文件流的所有方式一、Stream流引入Lambda表达式,基于Lambda所带来的函数式编程,又引入了一个全新的Stream概念,用于解决集合类库既有的鼻端。(Lambda表达式详解在上篇博客内容)现有一个需求:将list集合中姓张的元素过滤到一个新的集合中然后将过滤出来的姓张的元素中,再过滤出来长度为3的元素,存储到一个新的集合中1.用常规方法解决需求/…

    2022年10月6日
    0
  • BIOS + EC

    BIOS + ECBIOS+EC1参考1参考1、BIOS与EC之间关系2、BIOS和EC3、蓝天DOS下刷BIOS、EC小教程(以775TM为例)

    2022年7月20日
    22
  • 一位前辈工程师职业发展的忠告(转自51testing)

    一位前辈工程师职业发展的忠告(转自51testing)

    2021年7月31日
    56
  • html div 隐藏滚动条样式,div滚动条样式隐藏与显示

    html div 隐藏滚动条样式,div滚动条样式隐藏与显示DIV滚动条样式是可以设置的,CSS滚动条同样也可以显示与隐藏,对div设置滚动条,设置其横向滚动条和纵向滚动条样式应该怎么做呢?要设置CSS滚动条样式,需要用到overflow-y和overflow-x来设置div盒子对象右侧和底部滚动条效果。同时也可以使用CSS样式设置html框架iframe的滚动条隐藏,接下来为大家介绍。常规overflow怎么设置overflow-y:scroll总是显…

    2022年7月12日
    31
  • elk面试题_百家公司运维面试题汇总

    elk面试题_百家公司运维面试题汇总备注:这一我在去年国庆节期间,整理的整个19年,学员的面试遇到的问题,整理出来之后发给后期的学员,让他们做参考和学习,看看公司会面试哪些问题。前言小的时候,哭着哭着就笑了;长大后笑着笑着就哭了,这是一种人生经历,当你经历的越多,你越发现世界不像童话里那么美好。真正值得在乎的东西,不会越来越多,只会越来越少,所以珍惜你当下的每一寸时光。现在的每一份努力,都会变成倍增的回收,在公众面前表现出来。距…

    2022年6月3日
    111
  • js判断是否是字符串_js正则表达式匹配字符串

    js判断是否是字符串_js正则表达式匹配字符串js判断字符串包含某个字符串的几种方法

    2022年10月7日
    0

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号