Unicodecsv VS csv module | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Unicodecsv VS csv module

Trying to understand the difference between this two. I don't really understand the word Unicode (maybe that's the problem). An example where uincodecsv will be better than using csv module will be very much appreciated. Thank you

18th Nov 2019, 3:37 PM
Joseph Ojo
Joseph Ojo - avatar
3 Answers
+ 1
The unicodecsv module was made for Python 2.x in order to support unicode strings in csv files. Since Python 3.x unicode is supported as the system default encoding in the standard csv module. (https://docs.python.org/3/library/csv.html)
18th Nov 2019, 4:28 PM
Michael
Michael - avatar
0
Michael the link is showing 404 error
18th Nov 2019, 4:36 PM
Joseph Ojo
Joseph Ojo - avatar
0
Works for me... I just opened it... try again. https://docs.python.org/3/library/csv.html
18th Nov 2019, 4:44 PM
Michael
Michael - avatar