Three ways to remove items: del removes by key: python del person["age"]
pop() removes and returns the value: python age = person.pop("age")
clear() removes everything: python person.clear() # Now empty Use del when you don't need the value. Use pop() when you want to use the value before removing it.