Append A Dict In List Python Code Example
Example 1: Python dictionary append
# to add key-value pairs to a dictionary: d1 = { "1" : 1, "2" : 2, "3" : 3 } # Define the dictionary d1["4"] = 4 # Add key-value pair "4" is key and 4 is value print(d1) # will return updated dictionary
Example 2: python dict append
default_data = {'item1': 1, 'item2': 2, } default_data.update({'item3': 3}) # or default_data['item3'] = 3
Comments
Post a Comment