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

Python示例:将字典中的所有项目相乘

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

Python 示例

写一个 Python示例,用一个实际例子将字典中的所有条目相乘。

Python示例将字典中的所有项目相乘示例 1

在这个 python 程序中,我们使用 For 循环来迭代字典中的每个元素。在循环的 Python 中,我们将这些值乘以总变量。

# Python Program to Multiply All Items in a Dictionary

myDict = {'x': 20, 'y':5, 'z':60}
print("Dictionary: ", myDict)

total = 1
# Multiply Items
for key in myDict:
    total = total * myDict[key]

print("\nAfter Multiplying Items in this Dictionary: ", total)

在字典中增加项目的 Python示例示例 2

这个 python 程序使用 For Loop 和值函数来相乘字典中的值。

# Python Program to Multiply All Items in a Dictionary

myDict = {'x': 2, 'y':50, 'z':70}
print("Dictionary: ", myDict)

total = 1
# Multiply Items
for i in myDict.values():
    total = total * i

print("\nAfter Multiplying Items in this Dictionary: ", total)

倍增 Python 字典项输出

Dictionary:  {'x': 2, 'y': 50, 'z': 70}

After Multiplying Items in this Dictionary:  7000
本文固定链接:https://6yhj.com/leku-p-4441.html  版权所有,转载请保留本地址!
[猜你喜欢]

标签: 智能还款