Open In App
Related Articles

Different ways to import csv file in Pandas

Improve Article
Improve
Save Article
Save
Like Article
Like

CSV files are the “comma separated values”, these values are separated by commas, this file can be view like as excel file. In Python, Pandas is the most important library coming to data science. We need to deal with huge datasets while analyzing the data, which usually can get in CSV file format.

Let’s see the different ways to import csv file in Pandas.

Method #1: Using read_csv() method.




# importing pandas module  
import pandas as pd  
      
# making data frame  
    
df.head(10


Output:

 
Providing file_path.




# import pandas as pd
import pandas as pd
   
# Takes the file's folder
filepath = r"C:\Gfg\datasets\nba.csv"
   
# read the CSV file
df = pd.read_csv(filepath)
   
# print the first five rows
print(df.head())


Output:

 
Method #2: Using csv module.

One can directly import the csv files using csv module.




# import the module csv
import csv
import pandas as pd
   
# open the csv file
with open(r"C:\Users\Admin\Downloads\nba.csv") as csv_file: 
      
    # read the csv file
    csv_reader = csv.reader(csv_file, delimiter=',')
       
    # now we can use this csv files into the pandas
    df = pd.DataFrame([csv_reader], index=None)
    df.head()
      
# iterating values of first column
for val in list(df[1]):
    print(val)


Output:


Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 19 Dec, 2018
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials