1

我目前正在阅读“Learn Python the hard way”并已读到第 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
4

1 回答 1

2

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

那就是问题所在; 您以写入模式打开文件,这会删除文件的所有内容。您在文件中写入但从不关闭它,因此永远不会提交更改并且文件保持为空。接下来,您以读取模式打开它并简单地读取空文件。

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

此外,调用target.truncate()是无用的,因为它已经在write模式下打开时自动完成,如评论中所述。

编辑:评论中也提到, usingwith语句非常强大,您应该使用它。您可以从http://www.python.org/dev/peps/pep-0343/阅读更多内容,但基本上当与文件一起使用时,它会打开文件并在您取消缩进后自动关闭它。这样您就不必担心关闭文件,而且当您可以清楚地看到文件正在使用的位置时,它看起来会更好,这要归功于缩进。

快速示例:

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

with通过 using语句可以做得更短更好看:

with open("test.txt", "r") as f:
    s = f.read()
于 2012-12-31T11:33:58.783 回答