Lesson 63
Modifying Dictionaries
Add and change values!
edit
Modify Dictionaries!
Add, change, and remove items!
Add
dict["new"] = val
Change
dict["key"] = new
Delete
del dict["key"]
Add and change values!
Add, change, and remove items!
Add
dict["new"] = val
Change
dict["key"] = new
Delete
del dict["key"]