Answers for "python remove all occurrences of character from string"

4

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
1

remove occurrence in string pytthon

str="it is icy"
print str.replace("i", "")
Posted by: Guest on June-26-2020
0

remove occurence of character from string python

>>> "it is icy".replace("i", "")
't s cy'
Posted by: Guest on February-28-2021

Code answers related to "python remove all occurrences of character from string"

Python Answers by Framework

Browse Popular Code Answers by Language