Is there a way to easily convert numbers in a list into single digits for example
population = ['10001','11111','11010','110001']
into ['1','0','0','0','1']
add each digit in each set and put it in another list like
this
evaluation = [2,5,3,3] (adding up all the 1's up on the first list)
I'm very new to Python so I'm not sure if I'm doing this correctly