读取txt文件,结果为空行

时间:2017-04-24 09:56:18

标签: python

我在Python中打开并读取txt文件时遇到了一些问题。 txt文件包含文本(cat text.txt在终端中正常工作)。但是在Python中我只得到5个空行。

print open('text.txt').read()

你知道为什么吗?

3 个答案:

答案 0 :(得分:4)

我解决了。是一个utf-16文件。

print open('text.txt').read().decode('utf-16-le')

答案 1 :(得分:2)

如果这会打印文件中的行,那么程序选择的文件可能是空的吗?我不知道,但试试这个:

import tkinter as tk
from tkinter import filedialog
import os

def fileopen():
    GUI=tk.Tk()
    filepath=filedialog.askopenfilename(parent=GUI,title='Select file to print lines.')
    (GUI).destroy()
    return (filepath)

filepath = fileopen()
filepath = os.path.normpath(filepath)

with open (filepath, 'r') as fh:
    print (fh.read())

或者,使用这种印刷线的方法:

fh = open(filepath, 'r')
for line in fh:
    line=line.rstrip('\n')
    print (line)
fh.close()

或者如果您希望将行加载到字符串列表中:

lines = []
fh = open(filepath, 'r')
for line in fh:
    line=line.rstrip('\n')
    lines.append(line)
fh.close()

for line in lines:
    print (line)

答案 2 :(得分:1)

当你打开文件时,我认为你必须指定你想如何打开它。在您的示例中,您应该将其打开以便阅读:

print open('text.txt',"r").read()

希望这可以解决问题。