filename = info.txtf = open('info.txt') next(f) for line in f: print(line)next()函数获取了第一行的数据,但没有做任何动作。这样其后的FOR循环就直接从第二行开始读取执行。