delete a part of a string python code example
Example 1: remove word from string python
#You can remove a word from a string using str.replace ()
myString = 'papa is a good man'
newString = myString.replace('papa', '')
>>>' is a good man'
Example 2: remove a part of a string python
import re
url = 'abcdc.com'
url = re.sub('\.com$', '', url)