Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

csv module remove header title python

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)
 
PREVIOUS NEXT
Tagged: #csv #module #remove #header #title #python
ADD COMMENT
Topic
Name
2+3 =