标签: python python-2.7
我有一个我想在python中读取的txt文件。但是,在该txt文件中,文本中间有一个Subtitute Character。这使得阅读停在中间。
所以当我这样做时:
filetxt=open('file.txt') line=filetxt.read() print line
它只显示一些第一个字符,直到Subtitute Character的位置。你能救我吗?
答案 0 :(得分:1)
以二进制模式打开文件
file_txt = open('file.txt','rb')