search
HomeBackend DevelopmentPython TutorialPython Programming: Detailed explanation of built-in dictionary (dict) subclasses and applications (all in one place)

Preface

This article mainly introduces the application scenarios and usage examples of several built-in extension subclasses of the dictionary class (dict) in the Python collection module. It is also combined with the code so that you can master these in a "short and quick way" Subclasses directly related to dict - OrderedDict, defaultdict, userDict.

OrderedDict

The ordered dictionary (OrderedDict) in the Python collection module is just like a normal dictionary, but has some extra features related to sorting operations. OrderedDict remembers the order in which keys were inserted. They become less important now because the built-in dict class gained the ability to remember insertion order (this new behavior was guaranteed in Python 3.7, so OrderedDict seems less important now). General format for creating an ordered dictionary:

import collections
ordDict = collections.OrderedDict([items]):

or

from collections import OrderedDict
ordDict = OrderedDict([items]):

This creates and returns an OrderedDict object that is an instance of the dict subclass, which has methods specifically for rearranging dictionary order. This article briefly introduces these methods.

1) popitem(last=True):

The popitem() method of the ordered dictionary returns and deletes a (key, value) pair. If last is True, the corresponding key-value pair is returned in LIFO (last in, first out) mode; otherwise, it is returned in FIFO (first in, first out) order.

2) move_to_end(key, last=True):

Move the existing key to either end of the ordered dictionary. If last is True (the default), the item is moved to the right; if last is False, it is moved to the beginning. A KeyError will be raised if the key does not exist.

Please see the code:

Python Programming: Detailed explanation of built-in dictionary (dict) subclasses and applications (all in one place)

Suppose we delete and reinsert the same key into the OrderedDict. It will put this key at the end to maintain the insertion order of keys. An example is as follows:

Python Programming: Detailed explanation of built-in dictionary (dict) subclasses and applications (all in one place)

The running result is as follows:

删除前的OrderedDict:
x X
y Y
z Z
插入后的OrderedDict:
y Y
z Z
x X

UserDict

The UserDict class is used as a wrapper for Python’s built-in dictionary (dict) objects . The need for this class has been partially replaced by the ability to subclass directly from dict; however, this class is easier to use because the underlying dictionary can be accessed as an attribute. Use UserDict when you want to create your own dictionary with some modified or new features. Its usage format is as follows:

import collections
userDict = collections.UserDict([initialdata])

or

import collections
userDict = collections.UserDict([initialdata])

This type of simulated dictionary has the content of its instance stored in a regular dictionary, which can be accessed through the data attribute of the UserDict instance. If initialdata is provided, the data content is initialized with this; note that the instance itself does not retain a separate (non-exclusive) reference to initialdata, allowing it to be used for other purposes.

In addition to supporting mapping methods and operations, UserDict instances provide the following attributes:

1) data

A real dictionary used to store the contents of the UserDict class. An example is as follows:

Python Programming: Detailed explanation of built-in dictionary (dict) subclasses and applications (all in one place)

The output is as follows:

{'name': 'Kevin Cui', 'age': 24}

Suppose we want to define a custom dictionary object that supports addition operations (merging two dictionaries). When we add two instances of a custom dictionary, we expect to get a new dictionary containing all the elements in both dictionaries. Keep in mind that if you try to add to a regular dictionary in Python, you'll get a TypeError. Let us implement it with the help of UserDict:

Python Programming: Detailed explanation of built-in dictionary (dict) subclasses and applications (all in one place)

#The running output is as follows:

{'x': 10, 'y': 20}

Of course, you can also implement other related custom operations yourself .

DefaultDict

A common problem with the Dictionary class in Python is missing keys. When trying to access a key that does not exist in the dictionary, you will get a KeyError exception. So whenever you need to access an element in a dictionary, you have to handle this situation. Fortunately, Python provides the DefaultDict class. It is used to provide some default value for non-existent keys without raising KeyError.

DefaultDict is a subclass of the built-in dict class. It overrides a method and adds a writable instance variable. The rest of the functionality is the same as dict. The usage format is as follows:

import colloections
defaultDict = collections.defaultdict(default_factory=None, /[,…])

The above code returns a new dictionary-like object DefaultDict, which is a subclass of the built-in dict class.

The first parameter provides the initial value for the default_factory attribute, which defaults to None. All remaining arguments are treated as if passed to the dict constructor, including keyword arguments. What needs to be understood is that if this parameter is provided, it must be callable.

In addition to supporting standard dict operations, the DefaultDict object also supports the following method attributes:

1) __missing__(key):

If the default_factory attribute is None, use the key as The parameter will raise a KeyError exception.

If default_factory is not None, calling it with no arguments provides a default value for the given key, which is inserted into the key's dictionary and returned.

2)default_factory

DefaultDict对象支持default_factory实例变量。该属性由__missing__()方法使用。如果存在,则从构造函数的第一个参数开始初始化;如果不存在,则初始化为None。

Python Programming: Detailed explanation of built-in dictionary (dict) subclasses and applications (all in one place)

运行程序输出结果为:

[('blue', [2, 4]), ('red', [1]), ('yellow', [1, 3])]

在上述代码中,我们使用列表类型作为default_factory,更易于将包含键值序列对的列表组成字典。当第一次遇到每个键时,它还不在映射中,因此使用default_factory函数自动创建一个条目,该函数返回一个空列表。然后list.append()操作将值连接到新列表。当再次遇到键时,查找正常进行(返回该键的列表),然后list.append()操作将另一个值添加到列表中。这种技术比使用dict.setdefault()的等效技术要简单得多。

我们再看一个示例:

Python Programming: Detailed explanation of built-in dictionary (dict) subclasses and applications (all in one place)

输出结果如下:

[('a', 2), ('c', 1), ('g', 2), ('h', 1), ('i', 1), ('j', 1), ('n', 2)]

在上面代码中,我们将default_factory设置为int。这使得defaultdict用于计数(就像其他语言中的bag或multiset)。

当第一次遇到某个字母时,它就在映射中是不存在的,因此default_factory函数调用int()来提供一个默认的0计数。然后递增操作为每个字母建立计数。

提示:这里传递的int()函数默认返回的是整数0。若想返回任意值,可以自定义个一个基于lambda的常量函数。示例代码如下:

Python Programming: Detailed explanation of built-in dictionary (dict) subclasses and applications (all in one place)

一言以蔽之:使用DefaultDict的好处就是可以避免KeyError异常,并进行一些可能的特定处理。

本文小结

本文主要介绍了Python字典(dict)类相关的几个内置子类的应用。这些直接相关的子类分别是OrderedDict、defaultdict、userDict等内置子类。通过示例代码和关联描述,让你更轻松掌握它们的应用和基本规则。

The above is the detailed content of Python Programming: Detailed explanation of built-in dictionary (dict) subclasses and applications (all in one place). For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:51CTO.COM. If there is any infringement, please contact admin@php.cn delete
详细讲解Python之Seaborn(数据可视化)详细讲解Python之Seaborn(数据可视化)Apr 21, 2022 pm 06:08 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

详细了解Python进程池与进程锁详细了解Python进程池与进程锁May 10, 2022 pm 06:11 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

Python自动化实践之筛选简历Python自动化实践之筛选简历Jun 07, 2022 pm 06:59 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

归纳总结Python标准库归纳总结Python标准库May 03, 2022 am 09:00 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于标准库总结的相关问题,下面一起来看一下,希望对大家有帮助。

分享10款高效的VSCode插件,总有一款能够惊艳到你!!分享10款高效的VSCode插件,总有一款能够惊艳到你!!Mar 09, 2021 am 10:15 AM

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

Python数据类型详解之字符串、数字Python数据类型详解之字符串、数字Apr 27, 2022 pm 07:27 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

详细介绍python的numpy模块详细介绍python的numpy模块May 19, 2022 am 11:43 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

python中文是什么意思python中文是什么意思Jun 24, 2019 pm 02:22 PM

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.