xxxxxxxxxx
s="Hello$ Python3$"s1=s.replace("$","",1)print (s1)#Output:Hello Python3$
xxxxxxxxxx
#you can use replace function to remove specific word.
>>> message = 'you can use replace function'
>>> message.replace('function', '')
>>>'you can use replace '
xxxxxxxxxx
a_string = "addbdcd"
a_string = a_string.replace("d", "")
print(a_string)
xxxxxxxxxx
# Simply use this function
def RemoveChars(string, what_to_remove): # what_to_remove should be a list containing the characters
s = "".join(c for c in string if c not in list("".join(what_to_remove)))
return s.strip()
my_string = "All.Good,Dogs.. Eat.! Shoes?"
things_to_remove = [',', '.', '!']
final = RemoveChars(my_string, things_to_remove)
print(final)
>>> 'AllGoodDogs Eat Shoes?'