运行下面代码的输出结果为()。
Import numpy as np
A=np.arange (12).reshape (3,4)
Print(np.delete(a,5))
Import numpy as np
A=np.arange (12).reshape (3,4)
Print(np.delete(a,5))
A[[0123][4567[891011]]
B[[0123467891011]]
C[[0 2 3][4 6 7][8 10 11]]
D[[2 4 6 8 10]]
相关试题
-
运行下面代码的输出结果为()。Import numpy as npA=np.arange (12).reshape (3,4)Print(np.delete(a,5))
-
运行下面代码的输出结果为()。Import numpy as npA=np.arange (6).reshape (3,2)Wt=np.array ([3,5])Print(np.average (a
-
运行下面代码的输出结果为()。Import numpy as npA=np.array([-1.7,1.5,-0.2,0.6,10])Print(np.ceil a))
-
运行下面代码的输出结果为()。Import numpy as npA=np.arange(4)B=a[:]A[1]=9Print(a)Print(b)
-
运行下面代码的输出结果为()。ImportnumpyasnpA=np.arange(12).reshape(3,4)Print(np.delete(A,5))