我要做的是检查是否在文本文件中找到了这个字符串。如果是这样,我希望它打印出该行,否则打印出一条消息。
到目前为止,我已经实现了这段代码:
def check_string(string):
w = raw_input("Input the English word: ")
if w in open('example.txt').read():
for w.readlines():
print line
else:
print('The translation cannot be found!')
我已经尝试实现它,但出现语法错误。
它说:
该行的语法无效——对于 w.readlines():
关于如何使用这行代码的任何想法?