<small id='wKe0C'></small><noframes id='wKe0C'>

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

          <bdo id='wKe0C'></bdo><ul id='wKe0C'></ul>
      1. 为什么 python 字符串没有 __iter__ 函数?

        why do python strings not have __iter__ function?(为什么 python 字符串没有 __iter__ 函数?)

        • <bdo id='jzomA'></bdo><ul id='jzomA'></ul>

          <small id='jzomA'></small><noframes id='jzomA'>

            <legend id='jzomA'><style id='jzomA'><dir id='jzomA'><q id='jzomA'></q></dir></style></legend>

          • <i id='jzomA'><tr id='jzomA'><dt id='jzomA'><q id='jzomA'><span id='jzomA'><b id='jzomA'><form id='jzomA'><ins id='jzomA'></ins><ul id='jzomA'></ul><sub id='jzomA'></sub></form><legend id='jzomA'></legend><bdo id='jzomA'><pre id='jzomA'><center id='jzomA'></center></pre></bdo></b><th id='jzomA'></th></span></q></dt></tr></i><div id='jzomA'><tfoot id='jzomA'></tfoot><dl id='jzomA'><fieldset id='jzomA'></fieldset></dl></div>
            <tfoot id='jzomA'></tfoot>
                    <tbody id='jzomA'></tbody>
                  本文介绍了为什么 python 字符串没有 __iter__ 函数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  当字符串没有 __iter__ 函数时,我们如何迭代 python 字符串?

                  How is it that we can iterate over python strings when strings don't have an __iter__ function?

                  $ python
                  Python 2.6.5 (r265:79063, Apr 16 2010, 13:09:56) 
                  [GCC 4.4.3] on linux2
                  Type "help", "copyright", "credits" or "license" for more information.
                  >>> "asdf".__iter__
                  Traceback (most recent call last):
                    File "<stdin>", line 1, in <module>
                  AttributeError: 'str' object has no attribute '__iter__'
                  >>> it = iter("asdf")      
                  >>> it
                  <iterator object at 0xb736f5ac>
                  >>> 
                  

                  更重要的是(无论如何迭代字符串),为什么 python 字符串不遵循与其他所有内容相同的约定.特别是当 Python 文档说需要 __iter__ 函数时 http://docs.python.org/library/functions.html#iter ?

                  And more importantly (however strings are iterated over), why do python strings not follow the same convention as everything else. Particularly when the Python docs say that the __iter__ function is needed http://docs.python.org/library/functions.html#iter ?

                  推荐答案

                  来自您的链接:

                  或者它必须支持序列协议(__getitem__() 方法整数参数从 0 开始).

                  or it must support the sequence protocol (the __getitem__() method with integer arguments starting at 0).

                  In [1]: 'foo'.__getitem__(0)
                  Out[1]: 'f'
                  

                  这篇关于为什么 python 字符串没有 __iter__ 函数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  Running .jl file from R or Python(从 R 或 Python 运行 .jl 文件)
                  Running Julia .jl file in python(在 python 中运行 Julia .jl 文件)
                  Using PIP in a Azure WebApp(在 Azure WebApp 中使用 PIP)
                  How to run python3.7 based flask web api on azure(如何在 azure 上运行基于 python3.7 的烧瓶 web api)
                  Azure Python Web App Internal Server Error(Azure Python Web 应用程序内部服务器错误)
                  Run python dlib library on azure app service(在 azure app 服务上运行 python dlib 库)
                    <tfoot id='ykInT'></tfoot>

                      <small id='ykInT'></small><noframes id='ykInT'>

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

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