2016-07-04 61 views
-5

的代碼沒有找到記事本文件中找到,請大家幫忙文件不能使用open()

SEND_REPORT_TUPLE = ('wet', 'water', 'liquid') 
#make a list from the input 
input_list = answer.split(" ") 
#And then the use any function with comprehension list 
if any(e in SEND_REPORT_TUPLE for e in input_list): 
    file = open('Notepad', 'r') 
    print = file 
+1

是什麼回答?它在哪裏定義?你期望input_list是什麼? –

+1

尋求調試幫助的問題(**「爲什麼這個代碼不工作?」**)必須包含所需的行爲,*特定的問題或錯誤*以及*在問題本身中重現它所需的最短代碼* **。沒有**明確問題陳述**的問題對其他讀者沒有用處。請參閱:[如何創建最小,完整和可驗證示例](http://stackoverflow.com/help/mcve)。 – MattDMo

回答

1

請確保您的文件在同一目錄中的Python腳本或把一個完整路徑。你也應該把文件擴展名的名稱

文件=打開( 'Notepad.txt', 'R')