作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 Python 中旋转数组。我已阅读以下帖子 Python Array Rotation
我在哪里找到了这个小代码片段
arr = arr[numOfRotations:]+arr[:numOfRotations]
我试图将其放入以下函数中:
def solution(A, K):
A = A[K:] + A[:K]
print(A)
return A
其中 A 是我的数组,K 是旋转次数。只有我收到以下错误,ValueError: 操作数无法与形状 (3,) (2,) 一起广播。
A = np.array([1, 2, 3, 4, 5])
def solution(A, K):
A = A[K:]+A[:K]
print(A)
return A
solution(A, 2)
最佳答案
您需要使用 np.concatenate((A[K:],A[:K]))
如果 A 是一个数组,
您的功能在 A
时有效是 list
以免尝试从您的示例中查看
A = np.array([1, 2, 3, 4, 5])
K = 2
print(A[K:])
print(A[:K])
会给你
[3 4 5]
和
[1 2]
.
+
添加它们标志。
ValueError: operands could not be broadcast together with shapes (3,) (2,)
数组的正确实现将是
import numpy as np
A = np.array([1, 2, 3, 4, 5])
def solution(A, K):
A = np.concatenate((A[K:],A[:K]))
print(A)
return A
关于python - 如何在 Python 中旋转数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64168142/
我是一名优秀的程序员,十分优秀!