Answers for "how to convert csv to list python"

2

how to convert list into csv in python

import pandas as pd    

list1 = [1,2,3,4,5]
df = pd.DataFrame(list1)
df.to_csv('filename.csv', index=False)

#index =false removes unnecessary indexing/numbering in the csv
Posted by: Guest on June-15-2020
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 to list python"

Python Answers by Framework

Browse Popular Code Answers by Language