如下代码的输出结果是( )import numpy as npn = np.arange(24).reshape(2, -1, 2, 2)print(n.shape)
A、(2, 3, 2, 2);
B、(2, 2, 2, 2) ;
C、(2, 4, 2, 2) ;
D、(2, 6, 2, 2)
发布时间:2024-10-01 09:13:23
A、(2, 3, 2, 2);
B、(2, 2, 2, 2) ;
C、(2, 4, 2, 2) ;
D、(2, 6, 2, 2)