Answers for "remove text pyhton"

19

remove from string python

"Str*ing With Chars I! don't want".replace('!','').replace('*','')
Posted by: Guest on May-13-2020
0

python trim certain characters from string

string = '  xoxo love xoxo   '

# Leading and trailing whitespaces are removed
print(string.strip())

# All <whitespace>,x,o,e characters in the left
# and right of string are removed
print(string.strip(' xoe'))

#
Posted by: Guest on December-15-2020

Python Answers by Framework

Browse Popular Code Answers by Language