I am using FastCSV.
WHen I do this:
title = “\”” + some_title + “\””
My file looks like:
"""some title """, 23, 22
I want:
"some title", 23,22
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
My guess would be that fastercsv is adding the extra quotes to escape the quotes in your input string.
So if you’re input string is [Hello, CSV], faster csv would have to enclose it within double quotes so that csv parsing isn’t disrupted by the comma. Ditto for double quotes which have significance in CSV.
I’d say try sending string without the quotes, let fastercsv decide when it needs the double quotes OR use single quotes like Jacob suggests.