gpt4 book ai didi

python - Python 中 truncate() 方法的行为

转载 作者:太空狗 更新时间:2023-10-29 18:22:06 25 4
gpt4 key购买 nike

这是来自 exercise 16来自 Zed Shaw 的 Python 教程。我很难理解 truncate 函数在这种情况下到底做了什么。所以逻辑是我们打开一个文件然后......缩短它?为了什么?这里到底发生了什么?

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 "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 + "\n" + line2 + "\n" + line3 + "\n")

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

最佳答案

你的怀疑是对的。

首先,file.truncate这样做:

Truncate the file’s size. If the optional size argument is present, the file is truncated to (at most) that size. The size defaults to the current position…

与 Zed 的描述不太一样——如果当前位置是文件的开头,它只会“清空文件”——但因为我们只是打开文件(而不是 a 模式) ,当前位置是开始,所以这不相关。我们正在截断为一个空文件。

一切都很好,除了 open已经这样做了:

The most commonly-used values of mode are 'r' for reading, 'w' for writing (truncating the file if it already exists) …

因此,我们打开文件,如果不存在则创建它,如果存在则将其截断为 0 字节。然后,在下一行,我们将其截断为 0 个字节。

(“正在截断文件。再见!”消息非常具有误导性,因为我们已经截断了它。假设您在该行放置了一个断点并决定在执行它之前终止该程序……)

但请注意,这不是 Zed 的愚蠢错误;他似乎专门这样做是为了在学习练习 #5 中说明这一点:

If you open the file with 'w' mode, then do you really need the target.truncate()? Read the documentation for Python's open function and see if that's true.

关于python - Python 中 truncate() 方法的行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26917197/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com