Answers for "python remove all characters in a list"

18

how to remove all characters from a string in python

s = 'abc12321cba'

print(s.replace('a', ''))
Posted by: Guest on August-10-2020
3

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 "python remove all characters in a list"

Python Answers by Framework

Browse Popular Code Answers by Language