Python读文本文件中文乱问题

file_object = open('thefile.txt')
try:
  all_the_text = file_object.read().decode("gb2312")
finally:
  file_object.close()
return all_the_text

 

注:file_object.read().decode("gb2312") 可以解决中文乱码问题

posted @ 2017-03-09 13:06  海乐学习  阅读(511)  评论(0编辑  收藏  举报