使用DictMixin在Python中创建类似字典的对象

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用DictMixin在Python中创建类似字典的对象相关的知识,希望对你有一定的参考价值。

  1. """How to create a custom mappable container (dictionary-like) type in Python."""
  2.  
  3. from UserDict import DictMixin
  4.  
  5. class MyDict(DictMixin):
  6. # MyDict only needs to implement getitem, setitem, delitem and keys (at a
  7. # minimum) and UserDict will provide the rest of the standard dictionary
  8. # methods based on these four.
  9. #
  10. # getitem and delitem should raise KeyError if no item exists for the given
  11. # key. getitem, setitem and delitem should raise TypeError if the given key
  12. # is of the wrong type.
  13.  
  14. def __getitem__(self, key):
  15. ....
  16.  
  17. def __setitem__(self, key, item):
  18. ....
  19.  
  20. def __delitem__(self, key):
  21. ....
  22.  
  23. def keys(self):
  24. ....
  25.  
  26. # You can now use your class as if it was a dict, using the standard container
  27. # operators and dictionary methods.
  28.  
  29. d = MyDict()
  30. d[key] = value
  31. d.get(key)
  32. d.clear()
  33. etc.

以上是关于使用DictMixin在Python中创建类似字典的对象的主要内容,如果未能解决你的问题,请参考以下文章

Robot Framework_004——字典的创建、合并和嵌套

在 Python 中创建二维字典

在python中创建认识其他朋友的朋友的字典

你如何在 Python 中创建嵌套字典?

通过合并空白主字典中的字典,在 Python 中创建具有特定结构的 JSON

python multiprocessing:如何从子进程修改在主进程中创建的字典?