pandas.Index.any #

指数。任何( * args , ** kwargs ) [来源] #

返回是否有任何元素为 Truthy。

参数
*参数

与 numpy 兼容所必需的。

**夸格

与 numpy 兼容所必需的。

返回
bool 或类似数组(如果指定了 axis)

类似单个元素的数组可以转换为 bool。

也可以看看

Index.all

返回是否所有元素都为 True。

Series.all

返回是否所有元素都为 True。

笔记

非数字 (NaN)、正无穷大和负无穷大的计算结果为 True,因为它们不等于零。

例子

>>> index = pd.Index([0, 1, 2])
>>> index.any()
True
>>> index = pd.Index([0, 0, 0])
>>> index.any()
False