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