remove specific string from string python code example

Example 1: remove substring python

>>> papa = 'papa is a good man'
>>> papa.replace('papa', '')
' is a good man'

Example 2: python remove string from string

s = 'ab12abc34ba'
print(s.replace('ab', ''))

Example 3: delete certain characters from a string python

for char in line:
    if char in " ?.!/;:":
        line.replace(char,'')

Example 4: python remove specific character from string

s="Hello$ Python3$"s1=s.replace("$","",1)print (s1)#Output:Hello Python3$

Example 5: how to find and remove certain characters from text string in python

a_string = "addbdcd"

a_string = a_string.replace("d", "")

print(a_string)

Example 6: how to delete specific char in string python

a_string = a_string.replace("d", "")