str.replace(old, new[, max])
old -- 這是要替換舊字串
new -- 這是新的字串,這將用於取代舊的子字串。
max -- 如果給定可選引數max,只有第一個匹配項被取代
此方法返回所有出現被新的取代舊的子串的字串副本。如果可選引數max給定,只有第一個匹配項取代。
#!/usr/bin/python3 str = "this is string example....wow!!! this is really string" print (str.replace("is", "was")) print (str.replace("is", "was", 3))
thwas was string example....wow!!! thwas was really string thwas was string example....wow!!! thwas is really string