Answers for "how to write list csv file in python"

0

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 "how to write list csv file in python"

Python Answers by Framework

Browse Popular Code Answers by Language