A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://pandas.pydata.org/pandas-docs/stable/reference/api/../api/pandas.Index.any.html below:

pandas.Index.any — pandas 2.3.1 documentation

pandas.Index.any#
Index.any(*args, **kwargs)[source]#

Return whether any element is Truthy.

Parameters:
*args

Required for compatibility with numpy.

**kwargs

Required for compatibility with numpy.

Returns:
bool or array-like (if axis is specified)

A single element array-like may be converted to bool.

See also

Index.all

Return whether all elements are True.

Series.all

Return whether all elements are True.

Notes

Not a Number (NaN), positive infinity and negative infinity evaluate to True because these are not equal to zero.

Examples

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

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4