gpt4 book ai didi

python - 如何刷新 Python IO 流

转载 作者:行者123 更新时间:2023-12-04 10:58:23 26 4
gpt4 key购买 nike

import io

string_out = io.StringIO()
string_out.write("hello")
print(string_out.getvalue())

string_out.write("new Hello")
print(string_out.getvalue())

OutPut1: hello 
OutPut2: hellonew Hello

我如何从流中刷新我的第一个输入,以便第二个流的输出变成新的 Hello

最佳答案

您可以使用函数 truncate()。它不会删除流但会调整它的大小,因此给它一个 0 值应该会删除流中的所有字节。您还需要使用 seek() 来更改流的位置。与 truncate() 相同,给它一个 0 值应该将位置偏移到流的开头。祝你好运!

import io

string_out = io.StringIO()
string_out.write("hello")
print(string_out.getvalue())
string_out.seek(0)
string_out.truncate(0)
string_out.write("new Hello")
print(string_out.getvalue())

更新:truncate(0) 和 truncate() 有什么区别?

truncate() 使用当前默认位置,而 truncate(0) 使用起始位置。因为您已经在 before truncate(0) 中指定了 seek(0),所以在截断之前将位置切换到句子的开头。下面的示例应该会为您弄清楚这一点。

  • 使用 seek(10)truncate():

enter image description here

  • 使用 seek(0)truncate():

enter image description here

关于python - 如何刷新 Python IO 流,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59026837/

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