标签: python numpy
我有2d数组,它的大小/形状就像(1L,27L,2L)这个。我想把它改成(27L,2L)怎么做?
答案 0 :(得分:0)
这应该这样做:
yourArray = yourArray[0]