回答:
aString = "hello world"
aString.startswith("hello")
に関する詳細情報startswith
。
複数の単語をマジックワードに一致させる場合は、一致する単語をタプルとして渡すことができます。
>>> magicWord = 'zzzTest'
>>> magicWord.startswith(('zzz', 'yyy', 'rrr'))
True
注:startswith
取るstr or a tuple of str
docsを参照してください。