how to cut a string after a number of characters python code example Example: drop all characters after a character in python sep = '...' stripped = text.split(sep, 1)[0]