我正在阅读Zed Shaw的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, 'r+')
print "Displaying the file contents:"
print target.read()
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(line1)
target.write("\n")
target.write(line2)
target.write("\n")
target.write(line3)
target.write("\n")
print "And finally, we close it."
target.close()请注意,我使用的是'r+‘而不是'w’,因为我想在练习中读和写,但是发生了一些事情: target.truncate()不能工作,文件中的信息仍然存在。为什么节目是这样进行的?
谢谢您抽时间见我。
我来自哥伦比亚,英语不是我的母语,所以请原谅我的错误。
发布于 2015-09-28 21:08:44
truncate默认在当前位置截断文件,在read调用之后,该位置将位于文件的末尾。如果要清除整个文件,请使用truncate(0)。
https://stackoverflow.com/questions/32831797
复制相似问题