试题详情

运行下面代码的输出结果为()。
Importnumpyasnp
A=np.arange(12).reshape(3,4)
Print(np.delete(
A,5))

A[[0123][4567][891011]]

B[0123467891011]

C[[023][467][81011]]

D[246810]