Answers for "python remove elements from string"

21

remove substring python

>>> papa = 'papa is a good man'
>>> papa.replace('papa', '')
' is a good man'
Posted by: Guest on August-28-2020
11

python remove string from string

s = 'ab12abc34ba'
print(s.replace('ab', ''))
Posted by: Guest on September-12-2020
8

delete certain characters from a string python

for char in line:
    if char in " ?.!/;:":
        line.replace(char,'')
Posted by: Guest on April-08-2020
1

remove word from string in python

#you can use replace function to remove specific word.
message = 'you can use replace function'
message = message.replace('function', '')
print(message)
Posted by: Guest on July-04-2021

Code answers related to "python remove elements from string"

Python Answers by Framework

Browse Popular Code Answers by Language