how to replace letter in string python code example
Example 1: python replace letters in string
my_text = 'Aello world'
my_text = my_text.replace(my_text[0], 'H')
print (my_text)
Example 2: python replace char in string
string = "geeks for geeks geeks geeks geeks"
print(string.replace("geeks", "Geeks"))
print(string.replace("geeks", "GeeksforGeeks", 3))
Example 3: 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 4: python change character in string
mytext = 'Hello Zorld'
mytext = mytext.replace('Z', 'W')
print mytext,
Example 5: replace characters in string python
>>> a = '&#'
>>> print a.replace('&', r'\&')
\&
>>> print a.replace('#', r'\#')
&\
>>>