I am trying to concert a list which has words and and points score next to it into a dictionary
the list looks roughly like this ("oliver34", "jack17" , "jane56")
I want to split this into ("oliver", "34" "jack" , "17" , "jane", "56"
so that I can turn them into a dictionary.
if this can be done without importing anything that would be preferable
sorry if this does make sense first time using stack overflow and im not good at coding