list_data = ['ë ï','Française de Mécanique','ü','ç']
f = open('C:\MFiles\\M.csv','wb')
cs = csv.writer(f,delimiter = '§',encoding='utf-8')
cs.writerow(list_data)
f.close()
When I look into M.csv I could see the below text
- ë ï§
- Franç
- aise de Mécanique§
- ü§
- ç
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