Answers for "python remove all characters except letters"

15

how to remove all characters from a string in python

s = 'abc12321cba'

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

How to remove all characters after character in python?

Use str. split() to remove everything after a character in a string
a_string = "ab-cd"
split_string = a_string. split("-", 1) Split into "ab" and "cd"
substring = split_string[0]
print(substring)
Posted by: Guest on August-31-2021

Code answers related to "python remove all characters except letters"

Python Answers by Framework

Browse Popular Code Answers by Language