python how to replace a letter in a string 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: replace character in string python
>>> x = 'xpple bxnxnx cherry'
>>> a = x.replace(x,a)
'apple banana cherry'
>>> first_a = x.replace(x,a,1)
'apple bxnxnx cherry'
Example 3: replace characters in string python
>>> a = '&#'
>>> print a.replace('&', r'\&')
\&
>>> print a.replace('#', r'\#')
&\#
>>>