Pandas has a method to write data to a csv files, if this is what you mean (pandas.DataFrame.to_csv). You can specify ‘write’ mode, to rewrite all data, or ‘append’ mode, if you want to update the file with new rows.
solved What is the best way to write and store data in python 3 [closed]