Answers for "replacing characters of string in a list"

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 "replacing characters of string in a list"

Python Answers by Framework

Browse Popular Code Answers by Language