Answers for "how to convert csv file data to list in python"

2

converting a csv into python list

import csv
with open('records.csv', 'r') as f:
  file = csv.reader(f)
  my_list = list(file)
print(my_list)
Posted by: Guest on July-12-2021
0

how to convert csv into list

open('file.csv', 'r').read().splitlines() #assuming you want each row to be an individual element in the list
Posted by: Guest on February-03-2021

Code answers related to "how to convert csv file data to list in python"

Python Answers by Framework

Browse Popular Code Answers by Language