PYTHON FUNCTION TO REMOVE AST CHARACTER OF A STRING code example
Example 1: python remove string from string
s = 'ab12abc34ba'
print(s.replace('ab', ''))
Example 2: how to delete specific char in string python
a_string = a_string.replace("d", "")