Python Read CSV File Without Header Example

By Hardik Savani October 30, 2023 Category : Python

Hi Artisan,

In this tutorial, you will discover python read csv file without header. we will help you to give an example of how to read csv file without header in python. you can see python read csv file no header. I explained simply step by step read csv file without header python. Here, Create a basic example of read csv file skip header 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.

I will give you one example for reading csv file without header in python, so Without any further ado, let's see below code example:

You can use these example with python3 (Python 3) version.

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', 'hardik@gmail.com']
['2', 'Vimal Kashiyani', 'vimal@gmail.com']
['3', 'Harshad Pathak', 'harshad@gmail.com']

Header Was:
['ID', 'Name', 'Email']

Tags :
Shares