Answers for "convert a list to a csv 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
1

write list to csv python

import pandas as pd    

list1 = [1,2,3,4,5]
df = pd.DataFrame(list1)
df.to_csv('test.csv') ##It will include index also 

df.to_csv('test.csv', index=False) #Without Index
Posted by: Guest on August-01-2021

Code answers related to "convert a list to a csv python"

Python Answers by Framework

Browse Popular Code Answers by Language