Python Dictionary Add Value to Existing Key Last Updated : 23 Jan, 2025 Summarize Comments Improve Suggest changes Share Like Article Like Report The task of adding a value to an existing key in a Python dictionary involves modifying the value associated with a key that is already present. Unlike adding new key-value pairs, this operation focuses on updating the value of an existing key, allowing us to increment, concatenate or otherwise adjust its value as needed.For example, consider a dictionary d = {'a': 1, 'b': 2}. If we want to add 3 to the value of key 'a', we can directly modify the value like this: d['a'] += 3, resulting in d = {'a': 4, 'b': 2}.Using direct AssignmentThis is the efficient method for modifying the value associated with an existing key is direct in-place modification. When we know that the key exists, we can simply update its value. Python d = {'a': 1, 'b': 2} # Add 3 to the value of key 'a' d['a'] += 3 print(d) Output{'a': 4, 'b': 2} Let's explore other methods to achieve the same :Table of ContentUsing get()Using setdefault()Using defaultdictUsing get()get() allows us to safely add a value to an existing key when we're not sure whether the key exists. This method returns the value of the key if it exists and a default value such as 0 if the key is missing . Python d = {'a': 1, 'b': 2} # Add 3 to the value of key 'a', use 0 if 'a' doesn't exist d['a'] = d.get('a', 0) + 3 print(d) Output{'a': 4, 'b': 2} Using setdefault()setdefault() can be used when we want to add a key with a default value if it does not already exist and it returns the value of the key, allowing us to modify it as needed Python d = {'a': 1, 'b': 2} # Add 3 to the value of key 'a', use 0 if 'a' doesn't exist d['a'] = d.setdefault('a', 0) + 3 print(d) Output{'a': 4, 'b': 2} Using defaultdictdefaultdict from the collections module that automatically provides default values for missing keys. It's especially useful when the dictionary should have predefined default values, such as integers initialized to 0. Python from collections import defaultdict d = defaultdict(int, {'a': 1, 'b': 2}) # Add 3 to the value of key 'a' d['a'] += 3 print(d) Outputdefaultdict(<class 'int'>, {'a': 4, 'b': 2}) Comment More infoAdvertise with us Next Article Add a key value pair to Dictionary in Python M moneeshnagireddy Follow Improve Article Tags : Python Python Programs python-dict Practice Tags : pythonpython-dict Similar Reads Add a key value pair to Dictionary in Python The task of adding a key-value pair to a dictionary in Python involves inserting new pairs or updating existing ones. This operation allows us to expand the dictionary by adding new entries or modify the value of an existing key.For example, starting with dictionary d = {'key1': 'geeks', 'key2': 'fo 3 min read Python - Add Values to Dictionary of List A dictionary of lists allows storing grouped values under specific keys. For example, in a = {'x': [10, 20]}, the key 'x' maps to the list [10, 20]. To add values like 30 to this list, we use efficient methods to update the dictionary dynamically. Letâs look at some commonly used methods to efficien 3 min read Add Same Key in Python Dictionary The task of adding the same key in a Python dictionary involves updating the value of an existing key rather than inserting a new key-value pair. Since dictionaries in Python do not allow duplicate keys, adding the same key results in updating the value of that key. For example, consider a dictionar 3 min read Add Key to Dictionary Python Without Value In Python, dictionaries are a versatile and widely used data structure that allows you to store and organize data in key-value pairs. While adding a key to a dictionary is straightforward when assigning a value, there are times when you may want to add a key without specifying a value initially. In 3 min read How to Add Values to Dictionary in Python The task of adding values to a dictionary in Python involves inserting new key-value pairs or modifying existing ones. A dictionary stores data in key-value pairs, where each key must be unique. Adding values allows us to expand or update the dictionary's contents, enabling dynamic manipulation of d 3 min read Python - Add Items to Dictionary We are given a dictionary and our task is to add a new key-value pair to it. For example, if we have the dictionary d = {"a": 1, "b": 2} and we add the key "c" with the value 3, the output will be {'a': 1, 'b': 2, 'c': 3}. This can be done using different methods like direct assignment, update(), or 2 min read Like