Answers for "python replace symbol in string"

9

python replace letters in string

my_text = 'Aello world'
my_text = my_text.replace(my_text[0], 'H')
print (my_text)
Posted by: Guest on February-01-2021
0

replace characters in string python

>>> a = '&#'
>>> print a.replace('&', r'&')
&#
>>> print a.replace('#', r'#')
&#
>>>
Posted by: Guest on February-09-2021

Code answers related to "python replace symbol in string"

Python Answers by Framework

Browse Popular Code Answers by Language