how to control file output encoding?

MaTianyi matianyi at legendapl.com.cn
Tue Sep 19 23:40:17 EDT 2006


the encoding of  file that is output by the file.write() function  is 
always None.
and the encoding attribute of the File Object is readonly.

f = open('abc.txt','w')
print f.encoding
 >>> None

how can I change the file output encoding?





More information about the Python-list mailing list