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 数组添加数组

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

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

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • linux下查看java进程日志,linux 下查看java进程[通俗易懂]

    linux下查看java进程日志,linux 下查看java进程[通俗易懂]Maven(二)使用eclipse创建maven多模块项目maven作为一种自动化构建工具,在现在的企业应用开发中运用非常普遍.企业项目一般都比较大,多采用maven管理的多模块项目,下面直接上创建步骤一.创建一个maven项目AndroidActivity的生命周期详解应用程序中,一个Activity通常就是一个单独的屏幕,它上面可以显示一些控件也可以监…

  • pytest parametrize fixture_参数化数据

    pytest parametrize fixture_参数化数据前言当某个接口中的一个字段,里面规定的范围为1-5,你5个数字都要单独写一条测试用例,就太麻烦了,这个时候可以使用pytest.mark.parametrize装饰器可以实现测试用例参数化。官方示

  • 网卡绑定模式bond0(多个网卡bond)

    在现在的网络中,带宽越来越高,线路的带宽可以达到1000m的带宽,但是想要达到整体性能达到1000m的带宽却很难,因为网络i/o限制着,无法整体达到这么高的带宽,甚至有时以前买的服务器网卡带宽不咋地,导致整个网络的带宽无法提升。但是linux的bond模块和ifenslave网卡聚合工具可以解决这一问题。利用bond模块连接内核实现双网卡通信,使用ifens…

  • SpringBoot简介、SpringBoot 入门程序搭建、与JDBC、Druid、Mybatis和SpringData JPA的整合

    SpringBoot简介、SpringBoot 入门程序搭建、与JDBC、Druid、Mybatis和SpringData JPA的整合

  • eagleeye_EagleEye简介:户外视频监控分析和面部识别软件

    eagleeye_EagleEye简介:户外视频监控分析和面部识别软件eagleeye我还进行了大量研究,并使用各种机器学习方法开发了该软件系统。我已经在这个项目上花费了大约一年的时间,以为当地的州政府实施这项技术。不幸的是它没有实现。但是我有兴趣为开源社区做出贡献。它可以准确地识别,分割和识别视频源中的对象(视频源中人的92种语义属性)。最有趣的部分是我们对来自街头闭路电视摄像机的野外镜头的面部识别的准确性。EagleEye是基于真实人工智能的…

  • 什么是bin文件?「建议收藏」

    什么是bin文件?「建议收藏」出现这样的问题:未能加载文件或程序集“DAL”或它的某一个依赖项。系统找不到指定的文件。原因可能是:1.路径不正确;2.文件不存在。相信大家都遇到这样的问题了,我和大家一样按照常规的方法:把DAL的路径改到E:\4.平时记录\UI\机房重构\UI\bin\Debug下面了,一般这样就可以解决了。但是,我的没有解决。bin\Debug下面仍让没有有关DAL的dll文件。不

发表回复

您的电子邮箱地址不会被公开。

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