Python–将字典值减少 K
有时候,在使用字典时,我们可能会遇到一个用例,在这个用例中,我们需要在字典中将特定键的值减少 K。这看起来是一个非常直接的问题,但是当不知道某个键的存在时,catch 就会出现,因此有时会变成一个两步的过程。让我们讨论执行这项任务的某些方法。
方法#1:使用 get()
get 函数可以用 0 初始化一个不存在的键,然后减量是可能的。这样可以避免密钥不存在的问题。
# Python3 code to demonstrate working of
# Decrement Dictionary value by K
# Using get()
# Initialize dictionary
test_dict = {'gfg' : 1, 'is' : 2, 'for' : 4, 'CS' : 5}
# printing original dictionary
print("The original dictionary : " + str(test_dict))
# Initialize K
K = 5
# Using get()
# Decrement Dictionary value by K
test_dict['best'] = test_dict.get('best', 0) - K
# printing result
print("Dictionary after the decrement of key : " + str(test_dict))
Output :
原始字典:{'for': 4,' CS': 5,' is': 2,' gfg': 1} 字典后的减量键:{'best': -5,' for': 4,' CS': 5,' is': 2,' gfg': 1}
版权属于:月萌API www.moonapi.com,转载请注明出处