用法:
Series.str.endswith(pat, na=None)
測試每個字符串元素的結尾是否與模式匹配。
等效於
str.endswith()
。- pat:str
字符序列。不接受正則表達式。
- na:對象,默認為 NaN
如果測試的元素不是字符串,則顯示對象。默認值取決於數組的 dtype。對於object-dtype,使用
numpy.nan
。對於StringDtype
,使用pandas.NA
。
- 布爾係列或索引
一係列布爾值,指示給定模式是否與每個字符串元素的結尾匹配。
參數:
返回:
例子:
>>> 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
將
na
指定為False
而不是NaN
。>>> s.str.endswith('t', na=False) 0 True 1 False 2 False 3 False dtype:bool
相關用法
- Python pandas.Series.str.extract用法及代碼示例
- Python pandas.Series.str.extractall用法及代碼示例
- Python pandas.Series.str.isdecimal用法及代碼示例
- Python pandas.Series.str.get用法及代碼示例
- Python pandas.Series.str.replace用法及代碼示例
- Python pandas.Series.str.isspace用法及代碼示例
- Python pandas.Series.str.isdigit用法及代碼示例
- Python pandas.Series.str.wrap用法及代碼示例
- Python pandas.Series.str.isalnum用法及代碼示例
- Python pandas.Series.str.zfill用法及代碼示例
- Python pandas.Series.str.partition用法及代碼示例
- Python pandas.Series.str.isnumeric用法及代碼示例
- Python pandas.Series.str.startswith用法及代碼示例
- Python pandas.Series.str.count用法及代碼示例
- Python pandas.Series.str.rpartition用法及代碼示例
- Python pandas.Series.str.strip用法及代碼示例
- Python pandas.Series.str.removesuffix用法及代碼示例
- Python pandas.Series.str.rsplit用法及代碼示例
- Python pandas.Series.str.islower用法及代碼示例
- Python pandas.Series.str.removeprefix用法及代碼示例
注:本文由純淨天空篩選整理自pandas.pydata.org大神的英文原創作品 pandas.Series.str.endswith。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。