📜  在 csv python 代码示例中跳过标题

📅  最后修改于: 2022-03-11 14:45:53.587000             🧑  作者: Mango

代码示例1
with open(filename) as newfile:
    rows = csv.reader(newfile)
    next(rows,None)
    for row in rows:
      print(row)