is it possible to design a dictionary in python in a way that is bound to have unique keys and if by mistake a key which is already in the dictionary is added gets rejected. thanks
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can always create your own dictionary
|
|||||||
|
|
Just check your dict before you add the item
|
|||||||||
|
|
You could create a custom dictionary by deriving from |
|||||||
|