まくまくPythonノート
文字列がある文字列で始まっている/終わっているかを調べる
2012-09-28

ある文字列で始まっているか調べる

if s.startswith('AAA'):
    print('YES')

ある文字列で終わっているか調べる

if s.endswith('AAA'):
    print('YES')

OR 条件の指定

str#startswith()str#endswith() 共に、文字列パターンをタプルで渡すことで、複数の一致条件 (or) を指定することができます。

if s.startswith(('AAA', 'BBB')):
    print('It starts with AAA or BBB')
2012-09-28