26-Dec-2022
.
Admin
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', 'hardik@gmail.com']
['2', 'Vimal Kashiyani', 'vimal@gmail.com']
['3', 'Harshad Pathak', 'harshad@gmail.com']
Header Was:
['ID', 'Name', 'Email']
#Python