How to sum all the values in a dictionary?

前端 未结 9 1933
一生所求
一生所求 2020-11-28 01:39

Let\'s say I have a dictionary in which the keys map to integers like:

d = {\'key1\': 1,\'key2\': 14,\'key3\': 47}

Is there a syntactically

9条回答
  •  情书的邮戳
    2020-11-28 01:54

    You could consider 'for loop' for this:

      d = {'data': 100, 'data2': 200, 'data3': 500}
      total = 0
      for i in d.values():
            total += i
    

    total = 800

提交回复
热议问题