replace替換字符串的時候,需要重新賦值給變量,因為在python中字符串是不可變對象,因此在使用的時候我們必須重新賦值,就這么簡單。Pythonreplace()方法把字符串中的old(舊字符串)替換成new(新字符串),如果指定第三個參數(shù)max,則替換不超過max次。
replace()方法語法:
str.replace(old,new[,max])
參數(shù)
old--將被替換的子字符串。
new--新字符串,用于替換old子字符串。
max--可選字符串,替換不超過max次
返回值
返回字符串中的old(舊字符串)替換成new(新字符串)后生成的新字符串,如果指定第三個參數(shù)max,則替換不超過max次。
以下實例展示了replace()函數(shù)的使用方法:
str="thisisstringexample....wow!!!thisisreallystring";
printstr.replace("is","was");
printstr.replace("is","was",3);
輸出結(jié)果
thwaswasstringexample....wow!!!thwaswasreallystring
thwaswasstringexample....wow!!!thwasisreallystring
以上內(nèi)容為大家介紹了python培訓(xùn)之replace無法替換怎么辦,希望對大家有所幫助,如果想要了解更多Python相關(guān)知識,請關(guān)注IT培訓(xùn)機構(gòu):千鋒教育。