delete everything after a specific characterin python code example
Example 1: delete certain characters from a string python
for char in line:
if char in " ?.!/;:":
line.replace(char,'')
Example 2: drop all characters after a character in python
sep = '...'
stripped = text.split(sep, 1)[0]