how to remove all characters after a specific character in python 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', ''))