gpt4 book ai didi

Python 字典,以数学方式将数值添加到现有键值

转载 作者:行者123 更新时间:2023-12-01 05:26:58 26 4
gpt4 key购买 nike

如何以数学方式将数值添加到 Python 字典中的现有键值?例如

inventory = {'Motherboard' : 75, 'Amplifier IC' : 55}

所以如果我想将 15 添加到现有 75'Motherboard' ,我该怎么办。

最佳答案

使用+= operatorinventory['Motherboard'] 作为分配的目标:

>>> inventory = {'Motherboard' : 75, 'Amplifier IC' : 55}
>>> inventory['Motherboard'] += 15
>>> inventory
{'Motherboard': 90, 'Amplifier IC': 55}

关于Python 字典,以数学方式将数值添加到现有键值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21161575/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com