Python 3.3.2在用户输入中测试关键字

时间:2016-09-22 13:38:52

标签: python python-3.x keyword

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'的答案。有人可以告诉我有什么问题以及如何改进它。

提前致谢。

0 个答案:

没有答案