Steven D'Aprano wrote:
[reading Bengali]
> In Python 2, you probably need to do this:
>
> f = open("filename")
> bytes = f.read()
> text = bytes.decode('which-encoding-you-use')
> f.close()
In Python 2, I'd rather take a look at the "codecs" module (see
http://docs.python.org), namely the "codecs
On Mon, 23 Aug 2010 22:40:04 -0700, pahi sharma wrote:
> I am new to python .I have a corpus which is written in Bengali and i
> want to read that file using python code.Can anyone help me in this
> matter.
In Python 3, I believe this should work:
f = open("filename", encoding="which-encoding-yo
I am new to python .I have a corpus which is written in Bengali and i
want to read that file using python code.Can anyone help me in this
matter.
Thank You
--
http://mail.python.org/mailman/listinfo/python-list