Answers for "how to replace some characters in string in python"

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 "how to replace some characters in string in python"

Python Answers by Framework

Browse Popular Code Answers by Language