ho to remove subsrt in str in python code example
Example 1: remove substring python
>>> papa = 'papa is a good man'
>>> papa.replace('papa', '')
' is a good man'
Example 2: remove part of string python
txt = 'abbacabbd'
print(url.replace('bbd',''))
#output:
abbaca