gpt4 book ai didi

python - 查找后不读取所有字符

转载 作者:太空宇宙 更新时间:2023-11-03 16:22:04 26 4
gpt4 key购买 nike

我正在尝试制作一个将日志条目插入文本文件的程序。我遇到的问题是我逐行读取文件中的特定行并想在该行之前写入。 Python 正确读取了我正在查找的行,但是,当我试图返回到之前的位置时,它不再读取整行。我检查了偏移量,它是完全相同的,但由于某种原因,整行都没有被读取。

def fileWriter():
immediateTrigger = 0
returnTrigger = 0;
with open('C:\\testData.txt', 'r+') as file:
for line in iter(file.readline, ''):
#line = file.readline()
if 'Beginning of text entries' in line:
print('arrived at text entries')
print(file.tell())
print(line)
immediateTrigger = 1
file_pos = file.tell()
while not line.strip() and immediateTrigger == 1:
#print('here')
prev_pos = file.tell()
print(str(prev_pos) + 'before')
newLine = file.readline()
print(newLine)
if 'Text Entry 25' in newLine:
file.seek(prev_pos)
print(str(file.tell()) + 'after')
print(file.readline()')
immediateTrigger = 0

我得到的输出是:

arrived at text entries
Text Entry 1: The 1st revision
(random entries...)
36800 before
Text Entry 25: The 25th revision
36800 after
try 25: The 25th revision

为什么会这样断掉?

最佳答案

我想我找到了解决方案。我不知道为什么,但是当我使用 rb+ 作为模式而不是 r+ 时,它可以很好地读取整行。

关于python - 查找后不读取所有字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38353994/

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