Answers for "remove all occurrences of a character in a stringpython"

3

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]
Posted by: Guest on June-04-2020
0

Python Remove all occurrences of a character from a string

# Python program to remove all occurrences of a character from a string
text= 'Welcome, to, Python, World'
print(text.replace(',',''))
Posted by: Guest on December-08-2021

Code answers related to "remove all occurrences of a character in a stringpython"

Python Answers by Framework

Browse Popular Code Answers by Language