Answers for "removing all occurance of a charecter from a string in python"

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
2

How to remove all characters after a specific character in python?

text = input()
sep = '...'
stripped = text.split(sep, 1)[0]
print(stripped)
Posted by: Guest on August-31-2021

Code answers related to "removing all occurance of a charecter from a string in python"

Python Answers by Framework

Browse Popular Code Answers by Language