繁体   English   中英

将新字符串添加到文本文件中特定行的末尾

[英]Adding a new string to the end of a specific line in a text file

我是python的新手,因此我无法实施我在网上找到的解决方案来解决问题。 我正在尝试将特定字符串添加到文本文件的特定行的末尾。 据我了解的文本命令,如果我不想附加到文件末尾,则必须覆盖该文件。 因此,我的解决方案如下:

    ans = 'test'
numdef = ['H',2] 
f = open(textfile, 'r')
lines = f.readlines()
f.close()
f = open(textfile, 'w')
f.write('')
f.close()
f = open(textfile, 'a')
for line in lines:
    if int(line[0]) == numdef[1]:
        if str(line[2]) == numdef[0]:
                k = ans+ line
                f.write(k)
    else:
        f.write(line)

基本上,我试图将变量ans添加到特定行的末尾,该行出现在我的列表numdef 因此,例如,

2小时:4,0:在哪里搜索信息:谷歌

我想要

2小时:4,0:在哪里搜索信息:google测试

我也试过使用line.insert()但无济于事。

我知道使用open命令的'a'功能在这里不是很相关且没有帮助,但是我没有主意。 可能会喜欢此代码的提示,或者如果我应该废弃它并重新考虑整个问题。 感谢您的时间和建议!

尝试这个。 如果满足第一个要求,但没有另一个条件,则没有其他情况。

ans = 'test'
numdef = ['H',2] 
f = open(textfile, 'r')
lines = f.readlines()
f.close()
f = open(textfile, 'w')
f.write('')
f.close()
f = open(textfile, 'a')
for line in lines:
    if int(line[0]) == numdef[1] and str(line[2]) == numdef[0]:
        k = line.replace('\n','')+ans
        f.write(k)
    else:
        f.write(line)
f.close()

更好的方法:

#initialize variables
ans = 'test' 
numdef = ['H',2]  
#open file in read mode, add lines into lines
with open(textfile, 'r') as f:
    lines=f.readlines() 
#open file in write mode, override everything    
with open(textfile, 'w') as f: 
    #in the list comprehension, loop through each line in lines, if both of the conditions are true, then take the line, remove all newlines, and add ans. Otherwise, remove all the newlines and don't add anything. Then combine the list into a string with newlines as separators ('\n'.join), and write this string to the file.
    f.write('\n'.join([line.replace('\n','')+ans if int(line[0]) == numdef[1] and str(line[2]) == numdef[0] else line.replace('\n','') for line in lines]))

使用方法时

lines = f.readlines()

Python自动在每行末尾添加“ \\ n”。

尝试代替:

k =线+ ans

下列:

k = line.rstrip('\n') + ans

祝好运!

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM