Pandas: Use To_csv() With Quotation Marks And A Comma As A Seperator
I'm new to pandas, and I'm having trouble exporting to the correct CSV format for another system. Source file looks like this with fields seperated by a quotation marks and a comma
Solution 1:
The delimiter in your output file is still ,
. What you need to modify is the quoting
argument:
import csv
csvfiledf.to_csv(outputcsv, index=False, delimiter=',', quoting=csv.QUOTE_ALL)
The delimiter
argument is optional, since ,
is implied.
Post a Comment for "Pandas: Use To_csv() With Quotation Marks And A Comma As A Seperator"