第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

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

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

慕姐4208626 2023-06-27 18:12:05
我有一個文本文檔,其中我想更改文檔中出現(xiàn)的每個單詞中的特定字符“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貢獻(xiàn)2036條經(jīng)驗 獲得超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)


查看完整回答
反對 回復(fù) 2023-06-27
?
楊__羊羊

TA貢獻(xiàn)1943條經(jīng)驗 獲得超7個贊

就這樣吧。(嘗試?yán)斫馕易隽耸裁?- 這很容易 - 如果你沒有得到任何結(jié)果,請發(fā)表評論..)


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()


查看完整回答
反對 回復(fù) 2023-06-27
  • 2 回答
  • 0 關(guān)注
  • 174 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號