関数の機能:末尾が指定した文字列と一致すればTrue、そうでなければFalseを返却
例1 : 文字列を1つだけ指定
>>> s = 'This is an example of endswith method'
>>> s.endswith('d')
True
>>> s.endswith('method')
True
>>> s.endswith('example')
False
例2 : 文字列を複数指定
>>> s = 'This is an example of endswith method'
>>> s.endswith(('d', 'f'))
True
>>> s.endswith(('a', 'b'))
False
文字列を複数指定する場合は、タプルで指定します。末尾がタプルの中のいずれか文字列と一致すればTrueとなります。
関連項目 関数str.startswithの使い方の例