str.
endswith
Test if the end of each string element matches a pattern.
Equivalent to str.endswith().
str.endswith()
Character sequence. Regular expressions are not accepted.
Object shown if element is not a string. NaN converted to None.
pandas-on-Spark Series of booleans indicating whether the given pattern matches the end of each string element.
Examples
>>> s = ps.Series(['bat', 'Bear', 'cat', np.nan]) >>> s 0 bat 1 Bear 2 cat 3 None dtype: object
>>> s.str.endswith('t') 0 True 1 False 2 True 3 None dtype: object
Specifying na to be False instead of None.
>>> s.str.endswith('t', na=False) 0 True 1 False 2 True 3 False dtype: bool