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.Series.str.endswith.html below:

pandas.Series.str.endswith — pandas 2.3.1 documentation

pandas.Series.str.endswith#
Series.str.endswith(pat, na=<no_default>)[source]#

Test if the end of each string element matches a pattern.

Equivalent to str.endswith().

Parameters:
patstr or tuple[str, …]

Character sequence or tuple of strings. Regular expressions are not accepted.

nascalar, optional

Object shown if element tested is not a string. The default depends on dtype of the array. For object-dtype, numpy.nan is used. For the nullable StringDtype, pandas.NA is used. For the "str" dtype, False is used.

Returns:
Series or Index of bool

A Series of booleans indicating whether the given pattern matches the end of each string element.

Examples

>>> s = pd.Series(['bat', 'bear', 'caT', np.nan])
>>> s
0     bat
1    bear
2     caT
3     NaN
dtype: object
>>> s.str.endswith('t')
0     True
1    False
2    False
3      NaN
dtype: object
>>> s.str.endswith(('t', 'T'))
0     True
1    False
2     True
3      NaN
dtype: object

Specifying na to be False instead of NaN.

>>> s.str.endswith('t', na=False)
0     True
1    False
2    False
3    False
dtype: bool

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