Answers for "how to replace in string python"

25

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
Posted by: Guest on June-28-2020
3

python replace

string = "[Message]"
string = string.replace("[", "")#Removes all [
string = string.replace("]", "")#Removes all ]

print(string)
Posted by: Guest on September-28-2020
1

python replace

temp_str = 'this is a test'
print(temp_str.replace('is','IS')
print(temp_str)
      
#################### Result ###########################
      
thIS IS a test
this is a test
Posted by: Guest on July-02-2021

Code answers related to "how to replace in string python"

Python Answers by Framework

Browse Popular Code Answers by Language