Answers for "turn list into 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
2

list to csv

import csv

with open("out.csv", "w", newline="") as f:
    writer = csv.writer(f)
    writer.writerows(a)
Posted by: Guest on September-22-2020

Python Answers by Framework

Browse Popular Code Answers by Language