赞
踩
- import numpy as np
- Meng_array = np.array([1,2,3,8,5])#Numpy数组的定义
-
- type(Meng_array)#获取属性
- output:
- numpy.ndarray
-
- Meng_array.shape#获取属性
- output:
- (5,)
-
- np.shape(Meng_array)#获取属性
- output:
- (5,)
-
- Meng_array.dtype#获取属性
- output:
- dtype('int32')
-
- np.sort(Meng_array)#排序方法的调用
- output:
- array([1, 3, 4, 5, 8])
属性的一般调用格式:函数/类名.属性类别()#最后的括号看情况添加,而且里面可以有参数
方法的一般调用格式:库名.方法(函数/类名)
Pandas里有更复杂的属性和方法调用参数
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。