打印文件在截断和重写之前不打印任何内容

时间:2018-03-02 11:22:34

标签: python python-2.7 file

我目前正在通过“学习Python艰难之路”的方式努力工作,而且我对练习16中的修改有点困惑。

所以,这是我的代码:

from sys import argv

script, filename = argv

print "We're going to erase %r." % filename
print "If you don't want that, hit CTRL-C (^C)."
print "If you do want that, hit RETURN."

raw_input("?")

print "Opening the file..."
target = open(filename,'w+')

#Print contents ## WHY WONT THIS WORK??
print "This was inside your file %r:" % filename
target.seek(0)
print target.read()

这就是我的问题所在。上面的print函数不会打印文件,而只是给出一个空行。其余代码如下所示,您将看到第二个print工作正常。

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

print "Now I'm going to ask you for three lines."

line1 = raw_input("line 1: ")
line2 = raw_input("line 2: ")
line3 = raw_input("line 3: ")

print "I'm going to write these to the file."
target.write(("\n%s\n%s\n%s\n") % (line1, line2, line3))

#This print does work
target.seek(0)
print target.read()

print "And finally, we close it."
target.close()

我在这里做错了什么?

1 个答案:

答案 0 :(得分:3)

当您以写入模式('w''w+')打开文件时,python将截断该文件(或者如果它不存在则创建它)。

而是以读取/追加模式打开文件以进行读写('r+''a+'),这不会截断文件并仍允许您同时读取和写入文件

This post提供了一个有用的流程图,显示了在什么情况下应该使用哪些开放模式。

因为在您的初始代码中文件已经为空,您的truncate没有做任何事情。

因此,当您更新代码以使用'a+''r+'时,您需要更新truncate

truncate(size)会将文件截断到文件当前位置(如果存在,则最多为size),因此在截断之前将光标再次移动到文件的开头{ {1}}。