我是一個新手我想實現一個代碼,如果我鍵入文本,它會查看文件內部,並會說如果有匹配的東西,如果不匹配任何東西將顯示沒有記錄但是這下面的代碼是不能做出正確的輸出任何想法非常感謝你提前輸入字符串並在一個文件中搜索Python
input = raw_input("Input Text you want to search: ")
with open('try.txt') as f:
found = False
if input in f:
print "true"
found = True
if not found:
print('no record!')
這甚至不會運行,因爲縮進沒有意義。 – khelwood