python remove from string all of 1 character code example
Example 1: drop all characters after a character in python
sep = '...'
stripped = text.split(sep, 1)[0]
Example 2: how to remove all characters from a string in python
s = 'abc12321cba'
print(s.replace('a', ''))