📜  csv模块删除标题标题python代码示例

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

代码示例1
import csv
with open("your_csv_file.csv") as f:
    reader = csv.reader(f)
    next(reader) # skips the first(header) line
    for row in reader:
        print(row)