2012年10月8日 星期一

py read utf8 file

>>>import codecs
>>>f = codecs.open("test", "r", "utf-8")

Then after calling f's read() function, an encoded unicode object is returned.
>>>f.read()
u'Capit\xe1l\n\n'

沒有留言: