<legend id='VHD5X'><style id='VHD5X'><dir id='VHD5X'><q id='VHD5X'></q></dir></style></legend>
    <tfoot id='VHD5X'></tfoot>

      <bdo id='VHD5X'></bdo><ul id='VHD5X'></ul>
    1. <small id='VHD5X'></small><noframes id='VHD5X'>

        <i id='VHD5X'><tr id='VHD5X'><dt id='VHD5X'><q id='VHD5X'><span id='VHD5X'><b id='VHD5X'><form id='VHD5X'><ins id='VHD5X'></ins><ul id='VHD5X'></ul><sub id='VHD5X'></sub></form><legend id='VHD5X'></legend><bdo id='VHD5X'><pre id='VHD5X'><center id='VHD5X'></center></pre></bdo></b><th id='VHD5X'></th></span></q></dt></tr></i><div id='VHD5X'><tfoot id='VHD5X'></tfoot><dl id='VHD5X'><fieldset id='VHD5X'></fieldset></dl></div>

        究竟什么是“容器"?在蟒蛇?(以及所有的 python 容器类型是什么?)

        What exactly are quot;containersquot; in python? (And what are all the python container types?)(究竟什么是“容器?在蟒蛇?(以及所有的 python 容器类型是什么?))
        <tfoot id='VvyEg'></tfoot>

      1. <i id='VvyEg'><tr id='VvyEg'><dt id='VvyEg'><q id='VvyEg'><span id='VvyEg'><b id='VvyEg'><form id='VvyEg'><ins id='VvyEg'></ins><ul id='VvyEg'></ul><sub id='VvyEg'></sub></form><legend id='VvyEg'></legend><bdo id='VvyEg'><pre id='VvyEg'><center id='VvyEg'></center></pre></bdo></b><th id='VvyEg'></th></span></q></dt></tr></i><div id='VvyEg'><tfoot id='VvyEg'></tfoot><dl id='VvyEg'><fieldset id='VvyEg'></fieldset></dl></div>
          <bdo id='VvyEg'></bdo><ul id='VvyEg'></ul>
          1. <small id='VvyEg'></small><noframes id='VvyEg'>

              <tbody id='VvyEg'></tbody>
            <legend id='VvyEg'><style id='VvyEg'><dir id='VvyEg'><q id='VvyEg'></q></dir></style></legend>

                  本文介绍了究竟什么是“容器"?在蟒蛇?(以及所有的 python 容器类型是什么?)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  python 文档经常提到容器".例如:

                  The python documentation frequently speaks of "containers". E.g. :

                  如果 check_circular 为 False(默认:True),则循环容器类型的引用检查将被跳过并循环引用将导致溢出错误(或更糟).

                  If check_circular is False (default: True), then the circular reference check for container types will be skipped and a circular reference will result in an OverflowError (or worse).

                  但我找不到任何容器的官方定义,也找不到它们的列表.

                  But I can't find any official definition of containers, neither a list of them.

                  对于 Python 2.7.3:

                  For Python 2.7.3:

                  检查的内置类型是容器:

                  (isinstance(object, collections.Container) 返回 True)

                  1. 定义了 __contains__ 方法的容器:

                  • 所有内置序列类型:列表、字节数组、字符串、unicode 字符串和元组.
                  • 字典
                  • 所有内置集合类型:集合和frozensets

                  没有定义 __contains__ 方法的容器:

                  Containers which do not have a __contains__ method defined:

                  • xrange 对象

                  检查的不是容器的内置类型:

                  (isinstance(object, collections.Container) 返回 False):

                  • Int 对象
                  • 浮动对象
                  • 长对象
                  • 布尔对象
                  • 模块对象
                  • 文件对象
                  • 缓冲区对象
                  • 无对象

                  告诉我您检查了哪些其他内置类型 isinstance(object, collections.Container),我会将它们添加到列表中.

                  Tell me which other builtin types you have checked for isinstance(object, collections.Container) and I'll add them to the list.

                  推荐答案

                  容器是包含任意数量的其他对象的任何对象.通常,容器提供了一种访问所包含对象并对其进行迭代的方法.

                  Containers are any object that holds an arbitrary number of other objects. Generally, containers provide a way to access the contained objects and to iterate over them.

                  容器示例包括tuplelistsetdict;这些是内置容器.collections 模块.

                  Examples of containers include tuple, list, set, dict; these are the built-in containers. More container types are available in the collections module.

                  严格来说,collections.abc.Container 抽象基类(collections.Python2 中的 Container)适用于通过 __contains__ 魔术方法支持 in 运算符的任何类型;所以如果你可以写 x in y 那么 y 通常是一个容器,但并不总是:容器之间的一个重要区别点 和一般的 iterables 是,当迭代时,容器将返回它们持有引用的现有对象,而生成器和例如file 对象每次都会创建一个新对象.这对垃圾收集和深度对象遍历(例如 deepcopy 和序列化)有影响.

                  Strictly speaking, the collections.abc.Container abstract base class (collections.Container in Python2) holds for any type that supports the in operator via the __contains__ magic method; so if you can write x in y then y is usually a container, but not always: an important point of difference between containers and general iterables is that when iterated over, containers will return existing objects that they hold a reference to, while generators and e.g. file objects will create a new object each time. This has implications for garbage collection and deep object traversal (e.g. deepcopy and serialisation).

                  举个例子,iter(lambda: random.choice(range(6)), 0)支持in操作符,但肯定是 一个容器!

                  As an example, iter(lambda: random.choice(range(6)), 0) supports the in operator, but it is certainly not a container!

                  Collections.abc.Container 抽象基类的意图是只考虑 __contains__ 魔术方法,而不考虑支持 in 操作符是一个真正的容器应该能够在单个操作中测试容器,并且不会显着改变内部状态.由于 Collections.abc.Container__contains__ 定义为抽象方法,因此可以保证如果 isinstance(x, collections.abc.Container)x 支持 in 运算符.

                  The intent of the Collections.abc.Container abstract base class in only considering the __contains__ magic method and not other ways of supporting the in operator is that a true container should be able to test for containment in a single operation and without observably changing internal state. Since Collections.abc.Container defines __contains__ as an abstract method, you are guaranteed that if isinstance(x, collections.abc.Container) then x supports the in operator.

                  实际上,所有容器都将具有 __contains__ 魔术方法.然而,当测试一个对象是否是一个容器时,你应该使用 isinstance(x, collections.abc.Container) 来清晰和向前兼容,如果 Container 子类检查是改变了.

                  In practice, then, all containers will have the __contains__ magic method. However, when testing whether an object is a container you should use isinstance(x, collections.abc.Container) for clarity and for forward compatibility should the Container subclass check ever be changed.

                  这篇关于究竟什么是“容器"?在蟒蛇?(以及所有的 python 容器类型是什么?)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  What happens when you compare 2 pandas Series(当你比较 2 个 pandas 系列时会发生什么)
                  Quickly find differences between two large text files(快速查找两个大文本文件之间的差异)
                  Python - Compare 2 files and output differences(Python - 比较 2 个文件和输出差异)
                  Why do comparisions between very large float values fail in python?(为什么在 python 中非常大的浮点值之间的比较会失败?)
                  Dictionary merge by updating but not overwriting if value exists(字典通过更新合并,但如果值存在则不覆盖)
                  Find entries of one text file in another file in python(在python中的另一个文件中查找一个文本文件的条目)
                  • <bdo id='2mQfx'></bdo><ul id='2mQfx'></ul>

                    <small id='2mQfx'></small><noframes id='2mQfx'>

                      <tbody id='2mQfx'></tbody>

                          <tfoot id='2mQfx'></tfoot>
                        1. <legend id='2mQfx'><style id='2mQfx'><dir id='2mQfx'><q id='2mQfx'></q></dir></style></legend>
                        2. <i id='2mQfx'><tr id='2mQfx'><dt id='2mQfx'><q id='2mQfx'><span id='2mQfx'><b id='2mQfx'><form id='2mQfx'><ins id='2mQfx'></ins><ul id='2mQfx'></ul><sub id='2mQfx'></sub></form><legend id='2mQfx'></legend><bdo id='2mQfx'><pre id='2mQfx'><center id='2mQfx'></center></pre></bdo></b><th id='2mQfx'></th></span></q></dt></tr></i><div id='2mQfx'><tfoot id='2mQfx'></tfoot><dl id='2mQfx'><fieldset id='2mQfx'></fieldset></dl></div>