Add some values in one key in a dictionary I have this dictionary with keys that it's name of persons and it's values are id number then i decided to add their birth day to it's name key I used update() but it removes the id number and replace it with birth day i want to add it
info = {'John':111111,'Mike':'222222'}
and i want to add their birth day :
info = {'John':111111,'21/may/1998','Mike':'222222','14/feb/1996'}
i don't want to add it manually
You can store the values as a list or tuple.