test1=input("This is a test: ")
test1=test1.split()
print(test1)
if ("word1") or ("word2") in test1:
print("test successful")
elif ("word3") or ("word4") in test1:
print("test 2 successful")
在计算机科学中,我们需要构建一个程序,分析用户输入以找出他们遇到的问题。朋友和我开发了这段代码,根据用户输入输出不同的答案,但是如果输入'word3'或'word4',它会输出'word1'或'word2'的答案。有人可以告诉我有什么问题以及如何改进它。
提前致谢。