文档解析无法正确比较

时间:2013-06-07 18:24:35

标签: python-3.x

我正在制作一个程序,将输入与txt文档进行比较。因此,如果文档中包含字符串“hi”并且输入为“hi”,则返回true。 txt文档长度超过100行,即使“hi”在文档中,它仍然返回false。这是该计划:

true = 0
test = open("test.txt", "a+")
word = input()
for line in test.readlines():
    if word in line:
        true = 1
if true == 0:
    print("false")
else:
    print("true")

我认为它与open命令上的缓冲区有关,我目前正在使用默认设置。

0 个答案:

没有答案