pandas.DataFrame.to_csv¶
- DataFrame.to_csv(path_or_buf, sep=', ', na_rep='', cols=None, header=True, index=True, index_label=None, mode='w', nanRep=None, encoding=None)¶
Write DataFrame to a comma-separated values (csv) file
Parameters : path_or_buf : string or file handle / StringIO
File path
na_rep : string, default ‘’
Missing data representation
cols : sequence, optional
Columns to write
header : boolean, default True
Write out column names
index : boolean, default True
Write row names (index)
index_label : string or sequence, default None
Column label for index column(s) if desired. If None is given, and header and index are True, then the index names are used. A sequence should be given if the DataFrame uses MultiIndex.
mode : Python write mode, default ‘w’
sep : character, default ”,”
Field delimiter for the output file.
encoding : string, optional
a string representing the encoding to use if the contents are non-ascii, for python versions prior to 3