Numpy 的 item(~)
方法将源数组的特定元素作为标量返回。
参数
1.arg
| None
或 int
或 tuple
或 int
允许的类型如下:
类型 |
意义 |
---|---|
None |
源数组的大小必须为 1,并以标量形式返回该元素。 |
int |
使用数组的扁平版本作为标量返回的元素的索引。 |
int 的元组 |
作为标量返回的元素的索引。 |
返回值
源数组中特定元素的标量表示。
例子
a = np.array([4,5,6])
a.item(1)
5
a = np.array([5])
a.item()
5
考虑以下二维数组:
a = np.array([[4,5],[6,7]])
a
array([[4, 5],
[6, 7]])
a.item(2)
6
a.item((1,0))
6
相关用法
- Python NumPy itemset方法用法及代码示例
- Python dict items()用法及代码示例
- Python NumPy itemsize属性用法及代码示例
- Python itertools.takewhile用法及代码示例
- Python itertools.cycle用法及代码示例
- Python itertools.dropwhile用法及代码示例
- Python itertools.repeat用法及代码示例
- Python itertools.combinations_with_replacement用法及代码示例
- Python itertools.groupby()用法及代码示例
- Python itertools.repeat()用法及代码示例
- Python iter用法及代码示例
- Python itertools.count用法及代码示例
- Python itertools.starmap用法及代码示例
- Python itertools.filterfalse用法及代码示例
- Python itertools.chain.from_iterable用法及代码示例
- Python itertools.groupby用法及代码示例
- Python itertools.zip_longest用法及代码示例
- Python calendar itermonthdays2()用法及代码示例
- Python itertools.accumulate用法及代码示例
- Python itertools.tee用法及代码示例
- Python itertools.combinations用法及代码示例
- Python itertools.permutations用法及代码示例
- Python itertools.product用法及代码示例
- Python calendar itermonthdays()用法及代码示例
- Python itertools.chain用法及代码示例
注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 NumPy | item method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。