We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
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
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: