gpt4 book ai didi

python - 如何删除文本文件中的输入?

转载 作者:太空宇宙 更新时间:2023-11-03 15:20:44 25 4
gpt4 key购买 nike

我现在正在学习Python。我想问是否有办法输入数据,找到文本文件中的数据并将其删除?

例如,在我的文本文件中

PSP0101
PMF0101
PHP0101

但我只想删除 PMF0101。所以就会变成这样

PSP0101
PHP0101

谢谢你

最佳答案

我想你可以使用:

import re
# read the file contents
the_file = open('some_file.txt', 'r')
data = the_file.read()
the_file.close()

# find, replace, and write to file
to_remove = "PMF0101"
data = re.sub(r"{}\s+".format(re.escape(to_remove)), "", data)
the_file = open('some_file.txt', 'w')
the_file.write(data)
the_file.close()

关于python - 如何删除文本文件中的输入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43572098/

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