I have a string that follows the pattern of a 1+ numbers followed by a single letter, 'a', 'b', 'c'. I want to split the string after every letter.
some_function('12a44b65c')
>>> ['12a', '44b', '65c']
I've tried so far
re.split('([abc]\d+)', '12a44b65c')
>>> ['12', 'a44', '', 'b65', 'c']

re.findall(r'\d+[abc]', '12a44b65c')