as an example, I have the string '10d45x'
I would like to take the string as an input and retrieve '10d' and '45x' separately.
some clarifications: the letters can always be of 1 character length but the numbers can be longer
I am trying to explore:
import re
re.split("[a-zA-Z]",'10d45x')
but unable to find the right parameters to get exactly what I want