直接给出结论:replace方法不会改变原字符串。
temp_str = 'this is a test'print(temp_str.replace('is','IS')print(temp_str)
thIS IS a testthis is a test
如果是需要对原字符串进行替换,可以这样写,重新赋值
a=a.replace(oldstr,newstr)print(a)
本文共 249 字,大约阅读时间需要 1 分钟。
直接给出结论:replace方法不会改变原字符串。
temp_str = 'this is a test'print(temp_str.replace('is','IS')print(temp_str)
thIS IS a testthis is a test
如果是需要对原字符串进行替换,可以这样写,重新赋值
a=a.replace(oldstr,newstr)print(a)
转载于:https://www.cnblogs.com/MarkKobs-blog/p/10343935.html