目录

搜索

输入搜索字词或模块,类或函数名称。

pandas.Series.str.endswith

Series.str.endswith(pat, na=nan)[source]

返回boolean表示系列/索引中的每个字符串是否以传递模式结束的系列。等同于str.endswith()

参数:

pat:string

字符序列

na:bool,default NaN

返回:

endswith:布尔值的系列/数组

Scroll To Top