PHP前端开发

python怎么替换指定字符串

百变鹏仔 2天前 #Python
文章标签 字符串

python中,可以使用字符串的 replace() 方法来替换指定的字符串。该方法接受两个参数,第一个参数是要被替换的字符串,第二个参数是替换后的字符串。下面是一个示例:

string = "Hello, World!"new_string = string.replace("World", "Python")print(new_string)

输出结果为:

Hello, Python!

在这个例子中,我们将字符串 Hello, World! 中的 “World” 替换为 “Python”,然后将结果打印出来。