how to delete a specific character from a string in python code example

Example 1: 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'

Example 2: delete certain characters from a string python

for char in line:
    if char in " ?.!/;:":
        line.replace(char,'')

Example 3: remove specific word from string using python

#you can use replace function to remove specific word.
>>> message = 'you can use replace function'
>>> message.replace('function', '')
>>>'you can use replace '

Example 4: python trim certain characters from string

string = '  xoxo love xoxo   '

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

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

#

Example 5: how to delete specific char in string python

a_string = a_string.replace("d", "")

Tags:

Misc Example