write csv file python pandas code example

Example 1: code how pandas save csv file

df.to_csv('out.csv')

Example 2: save pandas into csv

df.to_csv(r'Path where you want to store the exported CSV file\File Name.csv', index = False)

Example 3: Write a table to CSV file python

header = [re.sub(' +',' ',i[0][:-1].replace('\n', ' ')) for i in optionsTable[0]]

with open('test.csv', 'w') as fp:
   writer = csv.writer(fp, delimiter=',')
   writer.writerow(header)
   for row in optionsTable:
      writer.writerow([i[1] for i in row])

#Credit to https://stackoverflow.com/users/790387/burhan-khalid Burhan Khalid
#On StackOverflow.

Tags:

Misc Example