我试图让我的程序查看“单词”中的 3 个单词之一是否出现在精细的 kal.txt 中,只是其中一个单词出现在我们身上就足够了,但我似乎无法让它工作。
我的代码:
textring = open('kal.txt', 'r')
words =['flapping', 'Unexpected', 'down']
len_words = len(words)
print(len_words)
counter = 0
while counter < len_words:
if words[counter] in textring:
print('success')
SAVE_FILE = open('warnings/SW_WARNING.txt', 'w+')
SAVE_FILE.write(textring)
counter += 1
这是我在 cmd 中得到的输出:
3
那当然是因为它打印的是 3 的 len_words。
有什么建议为什么,或者有人有解决方案吗?