2010-9-29 21:59:00 阅读175 评论0 292010/09 Sept29
2009-8-21 12:50:54 阅读86 评论2 212009/08 Aug21
2009-6-15 10:41:05 阅读82 评论0 152009/06 June15
2009-3-25 11:44:02 阅读1354 评论0 252009/03 Mar25
import codecs参考:
f = codecs.open("pru_uni.txt", "w", "utf-8")
txt = unicode("campeón\n", "utf-8")
f.write(txt)
f.write(u'中文\n')
f.close()
2009-3-24 14:50:59 阅读918 评论1 242009/03 Mar24