2
我有5個文本文件需要存儲在數組中。我試過這樣。如何使用python存儲數組中的文件內容?
f=[]
f[0]=open('E:/cyg/home/Aiurea/workspace/nCompare5w5.txt','r')
f[1]=open('E:/cyg/home/Aiurea/workspace/nCompare5w10.txt','r')
f[2]=open('E:/cyg/home/Aiurea/workspace/nCompare5w20.txt','r')
f[3]=open('E:/cyg/home/Aiurea/workspace/nCompare5w50.txt','r')
f[4]=open('E:/cyg/home/Aiurea/workspace/nCompare5w80.txt','r')
for i in range(5):
f[i].close()
錯誤消息是「IndexError:列表分配索引超出範圍」
明白了!謝謝! –
@Aiurea Adica tot YO - 歡迎來到SO!只要'f.append(open('path','r'))'就足夠了 – fraxel