赞
踩
在Python中,replace()是一个字符串方法,用于替换字符串中的指定子串。它返回一个新的字符串,其中所有匹配的子串都被替换成指定的内容。replace()方法的语法如下:
new_string = original_string.replace(old_substring, new_substring, count)
original_string
:原始字符串,需要进行替换操作的字符串。old_substring
:要被替换的子串。new_substring
:用于替换的新子串。count
(可选):指定替换的次数。如果省略该参数,则替换所有匹配的子串。下面是一些replace()方法的示例:
示例 1:替换单个子串
string = "Hello, World!"
new_string
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。