I would like to know how can I access list values in a dictionary to sum them:
{'key1': [3, 1], 'key2': [0, 4], 'key3': [57492, 204652], 'key4': [1,3]}
I would like to sum the first element of each list sum(3,0,57492,1).
Is it possible to do so without any loop ?
Thank you in advance