基本的に文字列'abcde'
のすべての文字をチェックするコードを記述する別の簡単な方法はありますか
if input == 'a' or input == 'ab' or input == 'abc' or input == 'abcd' or input == 'abcde':
return True
あなたはこれを試すことができます:
If input in ['a', 'ab', 'abc', 'abcd', 'abcde']:
return True
else:
return False