Skip to content

All topics  /  Python

How to Read a CSV File Without Header in Python?

Python ·

Hi Dev,

In this tutorial, you will learn how to read a CSV file without header in python. you can understand a concept of read CSV file skip header python. you'll learn read CSV file without header python. step by step explain python read CSV file no header. Let's get started with how to read CSV file without header in python.

In this example, we will take one demo.CSV file with ID, Name and Email fields. Then, we will use open(), next() and reader() functions to read CSV file data without header columns fields.

Example :


main.py

from csv import reader

    
# skip first line from demo.csv
with open('demo.csv', 'r') as readObj:

  
    csvReader = reader(readObj)
    header = next(csvReader)

  
    # Check file as empty
    if header != None:
        # Iterate over each row after the header in the csv
        for row in csvReader:
            # row variable is a list that represents a row in csv
            print(row)  

Output:

['1', 'Hardik Savani', '[email protected]']
['2', 'Vimal Kashiyani', '[email protected]']
['3', 'Harshad Pathak', '[email protected]']
Header Was:
['ID', 'Name', 'Email']