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