разделить строку с первым численным значением в Python
re.split(r'(^[^\d]+)', string)[1:]
Frantic Fox
re.split(r'(^[^\d]+)', string)[1:]