当前分类:300例题>>正文

Python示例:计算字典中项目的和

来源:互联网   更新时间:2023年6月24日  

Python 示例

写一个 Python示例,用一个实际的例子找到字典中项目的总和。

在字典中查找项目总和的 Python示例示例 1

在这个程序中我们使用的是求和函数,字典值函数求字典值的和。 Python sum 函数是返回一个字典 中所有值的总和

# Python Program to find Sum of Items in a Dictionary

myDict = {'x': 250, 'y':500, 'z':410}
print("Dictionary: ", myDict)

# Print Values using get
print("\nSum of Values: ", sum(myDict.values()))

计算字典中项目总和的 Python示例示例 2

这个 Python示例使用 For 循环和值函数在字典中添加值。

myDict = {'x': 250, 'y':500, 'z':410}
print("Dictionary: ", myDict)
total = 0

# Print Values using get
for i in myDict.values():
    total = total + i

print("\nThe Total Sum of Values : ", total)

Python 字典项输出的总和

Dictionary:  {'x': 250, 'y': 500, 'z': 410}

The Total Sum of Values :  1160

计算字典中所有项目总和的 Python示例示例 3

在这个 Python示例中,我们使用 For Loop 来迭代这个字典中的每个元素。在 Python 循环中,我们将这些字典值添加到总变量中。

myDict = {'x': 250, 'y':500, 'z':410}
print("Dictionary: ", myDict)
total = 0

# Print Values using get
for i in myDict:
    total = total + myDict[i]

print("\nThe Total Sum of Values : ", total)
Dictionary:  {'x': 250, 'y': 500, 'z': 410}

The Total Sum of Values :  1160
本文固定链接:https://6yhj.com/leku-p-4443.html  版权所有,转载请保留本地址!
[猜你喜欢]

标签: 轻量云