I have several data frames to append to a csv files in python. I am using the following code to achieve that but not luck yet.
import csv as writer
import pandas as pd
def append_list_as_row(list_of_elem):
# Open file in append mode
with open('my_file.csv', 'a+', newline='') as write_obj:
# Create a writer object from csv module
csv_writer = writer(write_obj)
# Add contents of list as last row in the csv file
csv_writer.writerow(list_of_elem)
append_list_as_row(new_data_frame)
throwing the following error:
TypeError: 'module' object is not callable
Can anyone help me with this please?
I think u are Forget to Use csv.writer in
csvwriter
initialize. try thisAnd another question all of the frames it has one line? if it is not u can use for into
with
. like thisAnd you forget to use a close file.