淘先锋技术网
首页
1
2
3
4
5
6
7
Python中用于创建数组的是?
python中使用numpy模块来创建数组,首先得导入模块。
例子:
importnumpyasnp
np.array((1,2,3,4,5))
array(【1,2,3,4,5】)