共计 524 个字符,预计需要花费 2 分钟才能阅读完成。
Python 中的字符串 replace()方法用于将字符串中的某个子字符串替换为另一个字符串。它的语法如下:
string.replace(old, new[, count])
其中,old
表示要被替换的子字符串,new
表示用于替换的新字符串。可选参数 count
表示替换的次数,如果不指定该参数,则默认替换所有出现的子字符串。
下面是一些使用示例:
string = "Hello, World!"
# 将字符串中的逗号替换为句号
new_string = string.replace(",", ".")
print(new_string) # Output: Hello. World!
# 替换所有出现的 o 为 a
new_string = string.replace("o", "a")
print(new_string) # Output: Hella, Warld!
# 替换前两个出现的 l 为 z
new_string = string.replace("l", "z", 2)
print(new_string) # Output: Hezzo, World!
注意:replace()
方法返回一个新的字符串,原始字符串不会受到改变。如果需要替换原始字符串,可以将新字符串赋值给原始字符串变量。
丸趣 TV 网 – 提供最优质的资源集合!
正文完