尝试从 .txt 文件中读取一行,然后根据该行上的内容编写 if 语句。我写了我认为应该工作的内容,它打印出该行,但 if 语句打印出“此行是假的”
import linecache
test = open('test.txt', 'w+')
test.write('Test\n')
test.write('True\n')
test.close()
read = linecache.getline('test.txt', 2)
print(read)
if read == 'True':
print("The line is True")
else:
print('The line is False')
结果:
真的
这条线是假的
潇潇雨雨
缥缈止盈
相关分类