Friday, November 21, 2025
HomeLanguagesDifferent ways to import csv file in Pandas

Different ways to import csv file in Pandas

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:

RELATED ARTICLES

Most Popular

Dominic
32405 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6781 POSTS0 COMMENTS
Nicole Veronica
11928 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11997 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7166 POSTS0 COMMENTS
Thapelo Manthata
6862 POSTS0 COMMENTS
Umr Jansen
6847 POSTS0 COMMENTS