答案实际上很简单:一旦从文件中读取数据,就使用文件的编码将其转换为unipre,并处理UnipreDepreError异常:
try: # depre using utf-8 (use ascii if you want) unipre_data = str_data.depre("utf-8")except UnipreDepreError, e: print "The error is there !"
这将使您免于许多麻烦;您不必担心多字节字符编码,并且外部库(包括xlwt)仅在需要编写“正确的东西”时才做。
Python 3.0将强制要求指定字符串的编码,因此现在开始这样做是个好主意。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)