我有一個文件名列表 例如。文件名= ['blacklisted.txt','abc.txt','asfafa.txt','heythere.txt']在python中爲列表索引手動鍵入一個數字
我想允許用戶手動選擇要顯示的文件名,
*
print "Please key in the first log file you would like to use: "
choice1=raw_input()
print"Please key in the second log file you would like to use: "
choice2=raw_input()
filename1=filenames[choice1]
filename2=filenames[choice2]
print filename1
print filename2
*
但是,我得到了錯誤: 文件名1 =文件名[選擇1] 類型錯誤:列表索引必須是整數,不能海峽。
有什麼建議嗎?謝謝!
'選擇1 = INT(的raw_input())',使用'INT( )'。 –