はPython 3でIF文を簡素化するためにどのようにIF文を持っている:次のように
...
if word.endswith('a') or word.endswith('e') or word.endswith('i') or word.endswith('o') or word.endswith('u'):
...
をここで私はすべての状況をカバーするために4論理和を使用する必要がありました。とにかく私はこれを単純化することができますか?私はPython 3.4を使用しています。
これを確認してください: http://stackoverflow.com/questions/22812785/use-endswith-with-multiple-extensions – galah92
こちらもここで説明しています:http://stackoverflow.com/a/18351977/390450 –