how to remove all occurrences of a character from a string in python code example

Example 1: remove all occurrences of a character in a list python

>>> x = [1,2,3,2,2,2,3,4]
>>> list(filter(lambda a: a != 2, x))
[1, 3, 3, 4]

Example 2: take off character in python string

s = 'abc12321cba'

print(s.replace('a', ''))

Example 3: remove specific word from string using python

#you can use replace function to remove specific word.
>>> message = 'you can use replace function'
>>> message.replace('function', '')
>>>'you can use replace '