Hacker News new | ask | show | jobs
by newbie2020 1770 days ago
Hah, I use the join function when I write them. Can you elaborate upon why that’s bad?
1 comments

Doesn't require a whole lot of elaboration.

",".join(["a,b","c","d\ne","\"f\",g\""])

yields:

a,b,c,d

e,"f",g"

Try opening that in any csv reader.