CSV File Reader Function

  • Share this:

Code introduction


This function reads a CSV file at a specified path and returns a list containing all the rows.


Technology Stack : CSV file reading

Code Type : Function

Code Difficulty : Intermediate


                
                    
import csv
import os
import random
import time

def read_csv_file(file_path):
    with open(file_path, mode='r', encoding='utf-8') as file:
        csv_reader = csv.reader(file)
        data = list(csv_reader)
    return data                
              
Tags: