how to read a csv file in python code example

Example 1: python read csv

# pip install pandas 
import pandas as pd

# Read the csv file
data = pd.read_csv('data.csv')

# Print it out if you want
print(data)

Example 2: csv python write

import csv

with open('names.csv', 'w') as csvfile:
    fieldnames = ['first_name', 'last_name']
    writer = csv.DictWriter(csvfile, fieldnames=fieldnames)

    writer.writeheader()
    writer.writerow({'first_name': 'Baked', 'last_name': 'Beans'})
    writer.writerow({'first_name': 'Lovely', 'last_name': 'Spam'})
    writer.writerow({'first_name': 'Wonderful', 'last_name': 'Spam'})

Example 3: read entire csv file python

import csv

f = open("fileName.csv") 	#  encoding="utf8"
reader = csv.DictReader(f)  #  delimiter=";", quotechar='"'
data = [row for row in reader]

Example 4: read csv python

import pandas as pd 
data = pd.read_csv("filename.csv") 
data.head()

Example 5: how to read a csv file in python

import pandas as pd
df=pd.read_csv('the_file.csv')

Example 6: how to read a csv file in python

import csv
with open('some.csv', newline='') as f:
    reader = csv.reader(f)
    for row in reader:
        print(row)

Tags:

R Example