I want to take a string and create a list from it using a delimiter, while keeping delimiter.
If I have "A56-3#AJ4klAP0W"
I would like to return a list with A as delimiter.
[A56-3#, AJ4kl, AP0W]
I have tried split and slice but have not been successful. I did do list comprehension to get a list of the index of each delimiter but haven't been able to do much with it [0, 6, 11]