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") 可以解决中文乱码问题
本文共 191 字,大约阅读时间需要 1 分钟。
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") 可以解决中文乱码问题
转载地址:http://uuofo.baihongyu.com/