索引超出范围,文件读取行

时间:2018-03-07 20:17:28

标签: python list file indexing fwrite

我创建了一个包含新文件内容的列表h,但是,当我尝试运行我得到的代码时:

IndexError: list index out of range

这就是我的,我的代码是不是创建了一个列表?

def lab6 (fname):
    """writes in new file with text from existing file"""
    f = open('lab6.txt','a+')
    s = open(fname, 'r', encoding = "ISO-8859-1")
    sc = s.readlines() #creates a list with items in s
    f.write(sc[0]) #copy first line
    #skip next 18 lines
    f.write(str(sc[19:28])) #copy next 9 lines to lab6 
    h = f.readlines() #puts contents of lab6 into list
    print(h) #prints that list
    t = h [2] #retrieve 3rd item in list
    print(t.range(0,3)) #print 1st 3 letters of 3rd item in list

1 个答案:

答案 0 :(得分:2)

您需要回到文件的开头才能阅读您刚写的内容。否则它会从当前文件位置开始读取,但没有任何内容可供阅读,因此h是一个空列表。

f.seek(0)

h = f.readlines()

并且range()不是提取子字符串的方法,请使用切片表示法。

print(t[:3])

打印t的前3个字符。