Python读取文本文件但不打印任何内容

时间:2017-10-01 01:58:44

标签: python

我尝试了不同的打印文本文件的方法。但它没有任何印刷品。 文本文件中有代码可以肯定,我拼写正确。 为什么不从文本文件中打印任何内容?

f = open("quotes.txt", "r")
print("Name of the file:", f.name)

line = f.readline()
print("Read Line: %s" % line)

data = f.read()
print("Data: ", data)

f.close()

这就是它打印的内容:

Name of the file: quotes.txt
Read Line:
Data:

0 个答案:

没有答案