Answers for "python remove from text"

10

remove word from string python

#You can remove a word from a string using str.replace ()
myString = 'papa is a good man'
newString = myString.replace('papa', '')
>>>' is a good man'
Posted by: Guest on March-14-2020
-1

python remove t

>>> s="abc n t tt t nefg"
>>> ''.join(s.split())
'abcefg'
>>> ''.join(c for c in s if not c.isspace())
'abcefg'

import re

s = 'abc n t tt t nefg'
re.sub(r's', '', s)
=> 'abcefg'
Posted by: Guest on October-31-2020

Code answers related to "python remove from text"

Python Answers by Framework

Browse Popular Code Answers by Language