Deleting a few list items inside of dictionary
Hi, I have a dictionary:
phone = {\"first\":100,\"second\":200,\"third\":[10,12,5,38],\"fourth\":400}
Access values of the phone dictionary, Remove items of the List .
other answer - try get the item (key, value) containing data you want to change. remove it from dictionary. modify values (list) of this item. and then add it to dictionary