gpt4 book ai didi

Python:如何将数组中的值从某个位置移动到另一个位置?

转载 作者:太空宇宙 更新时间:2023-11-03 13:56:30 24 4
gpt4 key购买 nike

我有一个值数组

a = np.array([0,3,4,5,12,3,78,53,52])

我想移动数组中从索引 3 开始的最后三个元素,以便拥有

a 
array([ 0, 3, 4, 78, 53, 52, 5, 12, 3])

最佳答案

您可以使用切片和串联。

np.concatenate((a[:3], a[-3:], a[3:-3]))

关于Python:如何将数组中的值从某个位置移动到另一个位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54904030/

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