append data to csv without header python code example
Example 1: pandas to csv without header
file = pd.read_csv(file_name, header=None)
Example 2: append to csv python
with open('document.csv','a') as fd:
fd.write(myCsvRow)
file = pd.read_csv(file_name, header=None)
with open('document.csv','a') as fd:
fd.write(myCsvRow)