with open(fname) as f: next(f) for line in f: #do something
with open(fname) as f:
next(f)
for line in f:
#do something
如何跳过标题行并开始从第2行读取文件?