我目前正在阅读“用困难的方法学习Python”,已经读到了第16章。写入文件后,似乎无法打印文件的内容。它只是不打印任何内容。

from sys import argv

script, filename = argv print "We are going to erase the contents of %s" % filename print "If you don\'t want that to happen press Ctrl-C"
print "If you want to continue press enter"

raw_input("?") print "Opening the file..." target = open(filename, "w")

print "Truncating the file..." target.truncate()

print "Now i am going to ask you for 3 lines"

line_1 = raw_input("Line 1: ")
line_2 = raw_input("Line 2: ")
line_3 = raw_input("Line 3: ")

final_write = line_1 + "\n" + line_2 + "\n" + line_3

print "Now I am going to write the lines to %s" % filename

target.write(final_write)

target.close

print "This is what %s look like now" %filename

txt = open(filename)

x = txt.read() # problem happens here
print x

print "Now closing file"

txt.close

最佳答案

您不是在调用函数target.closetxt.close,而是只是在获取它们的指针。由于它们是函数(或更准确地说,是方法),因此在函数名称后需要()来调用它:file.close()

那就是问题所在;您以写入模式打开文件,该模式将删除文件的所有内容。您写入了文件,但从未关闭它,因此更改从未提交,文件保持为空。接下来,您以读取模式打开它,只需读取空文件。

要手动提交更改,请使用file.flush()。或者直接关闭文件,它将自动刷新。

同样,调用target.truncate()是没有用的,因为如注释中所述,以write模式打开时它已经自动完成。

编辑:在注释中还提到,使用with语句功能非常强大,您应该改用它。您可以从http://www.python.org/dev/peps/pep-0343/中阅读更多有关with的内容,但是基本上,当与文件一起使用时,它会打开文件并在您取消缩进后自动将其关闭。这样,您不必担心关闭文件,由于缩进,当您清楚地看到文件的使用位置时,它看起来要好得多。

快速示例:

f = open("test.txt", "r")
s = f.read()
f.close()


使用with语句可以使外观更短,外观更好:

with open("test.txt", "r") as f:
    s = f.read()

10-08 12:33
查看更多