delete substring from string python from text code example
Example 1: remove substring python
>>> papa = 'papa is a good man'
>>> papa.replace('papa', '')
' is a good man'
Example 2: remove from string python
"Str*ing With Chars I! don't want".replace('!','').replace('*','')