remove all characters from string python code example

Example 1: take off character in python string

s = 'abc12321cba'

print(s.replace('a', ''))

Example 2: delete certain characters from a string python

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

Example 3: remove random character from a dictionary python

#the pop.item() method removes the last inserted item in Dictionary
#In python versions lower than 3.7 will remove a RANDOM ITEM

thisdict = {
  "brand": "Ford",
  "model": "Mustang",
  "year": 1964
}
thisdict.popitem()
print(thisdict)

Example 4: drop all characters after a character in python

sep = '...'
stripped = text.split(sep, 1)[0]

Example 5: remove from string python

"Str*ing With Chars I! don't want".replace('!','').replace('*','')

Example 6: python trim certain characters from string

string = '  xoxo love xoxo   '

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

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

#