试题详情

运行下面代码的输出结果为()。
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]]