检查文件中是否存在单词

时间:2015-12-04 13:23:37

标签: python file python-3.x

我正在尝试创建一个程序,该程序包含一个包含单词列表的文件,用户必须输入文件中存在的单词。你能告诉我哪里出错了吗?

file = open('filename')
word_list = file.readlines()
print(word_list)
while True:
    word = input('type in word, must be in English and at least 3 letters long: ')
    if word in word_list:
        break;
    else:
        print("Try Again")

1 个答案:

答案 0 :(得分:0)

试试这个:

Array