我正在开发一个早期的翻译软件。我正在尝试获取单词的结尾字符并对其进行处理,但我需要区分不同的情况。
我该如何使用if endswith("a" or "b" or "c") : doAThing
?
我试过||
,|=
和or
.
if word.endswith("a" , "e" , "i" , "o" , "u") : print("JEFF")
错误:
File "test.py", line 50, in <module>
if word.endswith("a" , "e" , "i" , "o" , "u") and not ("a" , "e" , "i" , "o" , "u"): print("JEFF")
TypeError: endswith() takes at most 3 arguments (5 given)