import re
text = "2000H2HfH"
print( re.findall(r'\d+|[A-Z][a-z]*', text) )
