为了账号安全,请及时绑定邮箱和手机立即绑定

如何使用python更改文本文档中的特定字符?

如何使用python更改文本文档中的特定字符?

慕姐4208626 2023-06-27 18:12:05
我有一个文本文档,其中我想更改文档中出现的每个单词中的特定字符“d”,并且我想使用 python 来完成此操作。我正在使用 python 3 。谢谢。这是我的代码:import osdef main():    f = open("hello.txt", "a+")    # I am stuck here in my code in how to change "d" character from the document opened    f.close()if __name__=="__main__":    main()
查看完整描述

2 回答

?
慕桂英3389331

TA贡献2036条经验 获得超8个赞

我理解你的问题,看起来你想编辑你的 hello.text 文件,并且 .txt 包含一些字符('d)并且你想用任何字符串替换它。所以你可以做这样的事情,


# Read in the file

with open('hello.txt', 'r') as file :

  filedata = file.read()


# Replace the target string

filedata = filedata.replace('d', 'abcd')


# Write the file out again

with open('hello.txt', 'w') as file:

  file.write(filedata)


查看完整回答
反对 回复 2023-06-27
?
杨__羊羊

TA贡献1943条经验 获得超7个赞

就这样吧。(尝试理解我做了什么 - 这很容易 - 如果你没有得到任何结果,请发表评论..)


def main():

    with open("test.txt", "r") as f:

        fileData = f.read()

        print(fileData)


    a = [char for char in fileData]


    for i in range(len(a)):

        if a[i] == 'd':

            a[i] = 'LoL'

        else:

            continue


    with open("test.txt", "w") as f:

        f.write(''.join(a))


if __name__=="__main__":

    main()


查看完整回答
反对 回复 2023-06-27
  • 2 回答
  • 0 关注
  • 119 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信