how to remove a string that is to long in python code example
Example: remove substring python
>>> papa = 'papa is a good man'
>>> papa.replace('papa', '')
' is a good man'
>>> papa = 'papa is a good man'
>>> papa.replace('papa', '')
' is a good man'