如何省略python中numpy ndarray的所有最后元素?

时间:2016-01-25 19:39:50

标签: python numpy

所以我可以简单地将一个numpy数组切成:

$(".container-c table tr td div.order-steps").each(function()
{
   $(this).find('span:contains("25/01/2016")').length > 0 ?
      $(this).show() : $(this).hide(); 
});

但现在我说:

a = np.arange(10)
a[:-3]
array([0, 1, 2, 3, 4, 5, 6])

是否有一种不错的pythonic方式(没有循环)得到:

a = np.vstack((a, a))
a
array([[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
       [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]])

感谢。

1 个答案:

答案 0 :(得分:1)

感谢Divakar的评论。

a[:,:-3]