read a csv file 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: 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 3: read csv python

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

Example 4: python read csv

>>> import csv
>>> with open('eggs.csv', newline='') as csvfile:
...     spamreader = csv.reader(csvfile, delimiter=' ', quotechar='|')
...     for row in spamreader:
...         print(', '.join(row))
Spam, Spam, Spam, Spam, Spam, Baked Beans
Spam, Lovely Spam, Wonderful Spam

Example 5: how to read a csv file in python

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

Example 6: import csv file in python

import pandas as pd

df = pd.read_csv (r'Path where the CSV file is stored\File name.csv')
print (df)

Tags:

R Example