Python2's stdlib csv module is nice, but it doesn't support unicode. This module is a drop-in replacement which *does*. If you prefer python 3's semantics but need support in py2, you probably want https://github.com/ryanhiebert/backports.csv
Other
594
stars
87
forks
source link
Python 3 - Writing "ç" converted to ç in csv file #76
When I look into M.csv I could see the below text
But when you look into the list I have only 4 strings
I want to write as ç character instead of §
Because the delimiter also §
Please help me how to go about