python remove certain string from string code example
Example 1: remove substring python
>>> papa = 'papa is a good man'
>>> papa.replace('papa', '')
' is a good man'
Example 2: how to delete specific char in string python
a_string = a_string.replace("d", "")