Can I assign a dictionary key to a list OR list of lists. Then take averages, cov, etc it:
input={'03439', '03440'}
list of list= [[PersonA, 7, 8, 9, 10, 11],[PersonB, 12, 13, 14, 15, 16]]
Desired Output
{'03439': [PersonA, 7, 8, 9, 10, 11],'03440':[PersonB, 12, 13, 14, 15, 16]}
If I wanted to take the average values of the above, can I do so even with part of this being string and the other values?
dct? The input? The output? BTW,dctis aset. Applying the average to elements of different types has nothing to do with python, but with the concept of comparing apples to starfish