2007年11月17日 星期六 14:40
import sys import codecs file = open("result.xml", 'w') writer = codecs.lookup ('utf-8')[3](file) -------------- ä¸ä¸é¨å -------------- ??HTML?????... URL: http://python.cn/pipermail/python-chinese/attachments/20071117/948ed749/attachment.html
2007年11月19日 星期一 19:33
´òÏÂÃæÓï¾äÊÔÊÔ£¬¾ÍÖªµÀÁË¡£ print codecs.lookup ('utf-8') 2007/11/17, Deng Patrick <kedeng19801002在gmail.com>: > > import sys > import codecs > > file = open("result.xml", 'w') > writer = codecs.lookup ('utf-8')[3](file) > > _______________________________________________ > python-chinese > Post: send python-chinese在lists.python.cn > Subscribe: send subscribe to python-chinese-request在lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request在lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > -------------- 下一部分 -------------- Ò»¸öHTML¸½¼þ±»ÒƳý... URL: http://python.cn/pipermail/python-chinese/attachments/20071119/b22540bf/attachment-0001.htm
2007年11月21日 星期三 09:41
2007/11/17, Deng Patrick <kedeng19801002 at gmail.com>: > import sys > import codecs > > file = open("result.xml", 'w') > writer = codecs.lookup ('utf-8')[3](file) 可以这样分开写,更清楚些。 ref = codecs.lookup("utf-8")[3] # 取得utf8编码的StreamWriter类对象引用 writer = ref(file) #创建一个StreamWriter类实例,要求给构造函数传入一个file-like对象 使用codecs.lookup方法能够获得与一种编码相关的多个对象引用,codecs模块中有其他函数能够简化lookup方法的使用。 请参阅: http://docs.python.org/lib/module-codecs.html http://tkdchen.spaces.live.com/blog/cns!36EC325D5602B064!498.entry -- GoogleTalk: qcxhome at gmail.com MSN: qcxhome at hotmail.com My Space: tkdchen.spaces.live.com BOINC: boinc.berkeley.edu 中国分布式计算总站: www.equn.com
2007年11月21日 星期三 11:28
ÊÇindex3, ±íʾһ¸öÐòÁжÔÏóµÄµÚ4¸ö£¨indexÓÉ0¿ªÊ¼£© 2007/11/17, Deng Patrick <kedeng19801002在gmail.com>: > > import sys > import codecs > > file = open("result.xml", 'w') > writer = codecs.lookup ('utf-8')[3](file) > > _______________________________________________ > python-chinese > Post: send python-chinese在lists.python.cn > Subscribe: send subscribe to python-chinese-request在lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request在lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > -------------- 下一部分 -------------- Ò»¸öHTML¸½¼þ±»ÒƳý... URL: http://python.cn/pipermail/python-chinese/attachments/20071121/0076dd85/attachment.htm
Zeuux © 2025
京ICP备05028076号