<tfoot id='zZIxp'></tfoot>

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

    2. <small id='zZIxp'></small><noframes id='zZIxp'>

      <legend id='zZIxp'><style id='zZIxp'><dir id='zZIxp'><q id='zZIxp'></q></dir></style></legend>
        <bdo id='zZIxp'></bdo><ul id='zZIxp'></ul>

      Python中的多个元组到两对元组?

      时间:2023-08-31
    3. <legend id='H1tpc'><style id='H1tpc'><dir id='H1tpc'><q id='H1tpc'></q></dir></style></legend>
            <i id='H1tpc'><tr id='H1tpc'><dt id='H1tpc'><q id='H1tpc'><span id='H1tpc'><b id='H1tpc'><form id='H1tpc'><ins id='H1tpc'></ins><ul id='H1tpc'></ul><sub id='H1tpc'></sub></form><legend id='H1tpc'></legend><bdo id='H1tpc'><pre id='H1tpc'><center id='H1tpc'></center></pre></bdo></b><th id='H1tpc'></th></span></q></dt></tr></i><div id='H1tpc'><tfoot id='H1tpc'></tfoot><dl id='H1tpc'><fieldset id='H1tpc'></fieldset></dl></div>
          1. <small id='H1tpc'></small><noframes id='H1tpc'>

              <tbody id='H1tpc'></tbody>
            <tfoot id='H1tpc'></tfoot>
                <bdo id='H1tpc'></bdo><ul id='H1tpc'></ul>
                本文介绍了Python中的多个元组到两对元组?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                最好的分割方法是什么:

                What is the nicest way of splitting this:

                tuple = ('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h')
                

                进入这个:

                tuples = [('a', 'b'), ('c', 'd'), ('e', 'f'), ('g', 'h')]
                

                假设输入总是有偶数个值.

                Assuming that the input always has an even number of values.

                推荐答案

                zip() 是你的朋友:

                t = ('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h')
                zip(t[::2], t[1::2])
                

                这篇关于Python中的多个元组到两对元组?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:在python的列表中连接元组的元素 下一篇:如何在 Python 中反转元组?

                相关文章

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

                  • <bdo id='FeVU5'></bdo><ul id='FeVU5'></ul>
                  1. <tfoot id='FeVU5'></tfoot>

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