Answers for "python delete one letter words from string"

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
0

how to remove every other letter from a string python

>>> 'abcdefg'[::2]
'aceg'
Posted by: Guest on May-16-2021

Code answers related to "python delete one letter words from string"

Python Answers by Framework

Browse Popular Code Answers by Language