how to delete a particular character in string in python code example
Example 1: 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 2: python remove specific character from string
s="Hello$ Python3$"s1=s.replace("$","",1)print (s1)#Output:Hello Python3$