共计 258 个字符,预计需要花费 1 分钟才能阅读完成。
在 Python 中,可以使用字符串的 replace()
方法来替换指定的字符串。该方法接受两个参数,第一个参数是要被替换的字符串,第二个参数是替换后的字符串。下面是一个示例:
string = "Hello, World!"
new_string = string.replace("World", "Python")
print(new_string)
输出结果为:
Hello, Python!
在这个例子中,我们将字符串 Hello, World!
中的“World”替换为“Python”,然后将结果打印出来。
丸趣 TV 网 – 提供最优质的资源集合!
正文完