邪恶的人待久了,看某些东西也会习惯.
2009-8-21 12:50:54 阅读(8) 评论(1)
2009-6-15 10:41:05 阅读(4) 评论(0)
2009-3-25 11:44:02 阅读(38) 评论(0)
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 阅读(142) 评论(1)
2009-2-20 15:35:35 阅读(22) 评论(0)