pyhton replace code example
Example 1: replace character in string python
>>> x = 'xpple bxnxnx cherry'
>>> a = x.replace(x,a) # replaces x with a
'apple banana cherry'
>>> first_a = x.replace(x,a,1) # only replaces first a
'apple bxnxnx cherry'
Example 2: python replace string
# string.replace(old, new, count), no import is necessary
text = "Apples taste Good."
print(text.replace('Apples', 'Bananas')) # use .replace() on a variable
Bananas taste Good. <---- Output
print("Have a Bad Day!".replace("Bad","Good")) # Use .replace() on a string
Have a Good Day! <----- Output
print("Mom is happy!".replace("Mom","Dad").replace("happy","angry")) #Use many times
Dad is angry! <----- Output
Example 3: python replace
string = "[Message]"
string = string.replace("[", "")#Removes all [
string = string.replace("]", "")#Removes all ]
print(string)