python rreplace code example
Example 1: python replace char in string
string = "geeks for geeks geeks geeks geeks"
print(string.replace("geeks", "Geeks"))
print(string.replace("geeks", "GeeksforGeeks", 3))
Example 2: python replace string
text = "Apples taste Good."
print(text.replace('Apples', 'Bananas'))
Bananas taste Good. <---- Output
print("Have a Bad Day!".replace("Bad","Good"))
Have a Good Day! <----- Output
print("Mom is happy!".replace("Mom","Dad").replace("happy","angry"))
Dad is angry! <----- Output
Example 3: python replace
string = "[Message]"
string = string.replace("[", "")
string = string.replace("]", "")
print(string)