共计 484 个字符,预计需要花费 2 分钟才能阅读完成。
在 Python 中,你可以使用 replace()
方法来替换字符串中的某个字符串。
replace()
方法的语法如下:
string.replace(old, new, count)
其中,old
是要替换的旧字符串,new
是要替换的新字符串,count
是可选参数,表示要替换的次数(默认是全部替换)。
下面是一个例子:
string = "Hello, World!"
new_string = string.replace("World", "Python")
print(new_string)
输出结果:
Hello, Python!
在这个例子中,我们将字符串 "World"
替换为 "Python"
,并将结果存储在new_string
变量中。然后,我们打印出新的字符串new_string
。
请注意,replace()
方法返回一个新的字符串,原始字符串不会被修改。如果你需要在原字符串上进行替换,可以将结果赋值给原字符串变量:
string = string.replace("World", "Python")
print(string) # 输出结果为 "Hello, Python!"
丸趣 TV 网 – 提供最优质的资源集合!
正文完