python提取数组元素_python – 获取numpy数组中元素对的总和
你可以利用NumPy数组的元素加法能力:In [5]: import numpy as npIn [6]: t = np.array([4, 5, 0, 7, 1, 6, 8, 3, 2, 9])In [7]: t + np.r_[t[1:],t[0]]Out[7]: array([ 9, 5, 7, 8, 7, 14, 11, 5, 11, 13])np.r_是将序列连接在一起以形成新...