要替換某個詞在一個字符串,但不斷收到followinf結果:替換命令條件替換字符串
字符串:"This is my sentence."
在他們想要的用戶類型來代替:"is"
"was"
新的字符串:"Thwas was my sentence."
我怎樣才能確保它只替換詞「是」,而不是它找到的任何字符串?
代碼功能:
import string
def replace(word, new_word):
new_file = string.replace(word, new_word[1])
return new_file
任何幫助非常感謝,謝謝!
好找。我搜索了一個重複但用「替換」術語,而不是「查找」。 –
所以沒有I:[蟒替換的詞不部分單詞](https://www.google.ca/search?client=safari&rls=en&q=python+replace+words+not+partial+words&oq=python+replace+words+未+部分+詞語gs_l = serp.3 ... 44021.51387.0.51523.33.30.0.3.3.0.127.2123.23j5.28.0 .... 0 ... ... 1c.1.64.serp..2.18.1097 0j0i67k1j0i131k1j0i22i30k1j33i21k1。 0mLcUwAiDdk)。我認爲這裏的關鍵詞「不是部分詞」是關鍵。 –
至少現在的「替換」部分被覆蓋:) –