在python中,可以使用字符串的 replace()
方法来替换指定的字符串。该方法接受两个参数,第一个参数是要被替换的字符串,第二个参数是替换后的字符串。下面是一个示例:
string = "Hello, World!" new_string = string.replace("World", "Python") print(new_string)
输出结果为:
Hello, Python!
在这个例子中,我们将字符串 Hello, World!
中的 “World” 替换为 “Python”,然后将结果打印出来。
以上是python怎么替换指定字符串的详细内容。更多信息请关注PHP中文网其他相关文章!