add new key value to dictionary python code example
Example 1: add new keys to a dictionary python
d = {'key':'value'}
print(d)
d['mynewkey'] = 'mynewvalue'
print(d)
Example 2: python dictionary add key-value pair
dict = {'key1':'value_one', 'key2':'value_two'}
dict['key3'] = 'value_three'
Example 3: add value to dictionary python
dict[key] = value
Example 4: Python dictionary append
testing1={'one':1,'two':2}
''' update() is the method of dict() merges another dict into existing ones '''
''' it replaces the keys of exisiting ones with the the new ones '''
testing1.update({'two':3,'noice':69})
print(testing1) """ {'one':1,'two':3,'noice':69} """
Example 5: python how to add a new key to a dictionary
dictionary['new_key'] = value
d = {'a': 1, 'b': 5}
d['c'] = 37
print(d)
--> {'a': 1, 'b': 5, 'c': 37}
Example 6: python dictoinary add value
student_scores = {'Simon': 45 }
print(student_scores)
student_scores['Sara'] = 63
print(student_scores)