web-dev-qa-db-ja.com

文字列を別の文字列の複数の部分文字列と比較する

基本的に文字列'abcde'のすべての文字をチェックするコードを記述する別の簡単な方法はありますか

if input == 'a' or input == 'ab' or input == 'abc' or input == 'abcd' or input == 'abcde':
    return True
30
vsc

あなたはこれを試すことができます:

If input in ['a', 'ab', 'abc', 'abcd', 'abcde']:
    return True
else:
   return False
0
Houda