Answers for "remove text python"

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
15

take off character in python string

s = 'abc12321cba'

print(s.replace('a', ''))
Posted by: Guest on August-10-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

Python Answers by Framework

Browse Popular Code Answers by Language