第15252题 判断
判断以下NumPy程序是否可以提取数组中5到10之间的所有元素
import numpy as np
a = np.arange(15)
print(a[(a<=10) & (a>=5)])
A

正确

B

错误

提交0次 正确率0.00%
答案解析