read csv uisng pandas code example

Example 1: how to import csv in pandas

import pandas as pd

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

Example 2: read csv uisng pandas

import pandas as pd #import pandas
#syntax: pd.read_csv('file_location/file_name.csv')
data = pd.read_csv('filelocation/fileName.csv') #reading data from csv

Example 3: read a csv file in pandas

you should be in the same dir as .py file 

df = pd.read_csv('your_file_name.csv')

Example 4: pandas read csv python

pd.read_csv('data.csv')  # doctest: +SKIP

Tags:

Go Example