gpt4 book ai didi

python - 在 Python 中将两个数组 append 在一起

转载 作者:行者123 更新时间:2023-11-28 19:30:32 25 4
gpt4 key购买 nike

我一直在使用 Python 处理一个包含一维值列表的数组。到目前为止,我一直在使用 array.append(value) 函数一次向数组添加一个值。

现在,我想将另一个数组中的所有值添加到主数组中。换句话说,我不想一次添加一个值。副阵收集十个数值,收集完后,全部传给主阵。问题是,我不能简单地使用代码“array.append(other_array)”,因为我收到以下错误:

unsupported operand type(s) for +: 'int' and 'list'

我哪里错了?

最佳答案

列表可以加在一起:

>>> a = [1,2,3,4]
>>> b = [5,6,7,8]
>>> a+b
[1, 2, 3, 4, 5, 6, 7, 8]

并且可以轻松地将一个添加到另一个的末尾:

>>> a += b
>>> a
[1, 2, 3, 4, 5, 6, 7, 8]

关于python - 在 Python 中将两个数组 append 在一起,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8214519/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com