• <bdo id='Cqbf2'></bdo><ul id='Cqbf2'></ul>
      1. <legend id='Cqbf2'><style id='Cqbf2'><dir id='Cqbf2'><q id='Cqbf2'></q></dir></style></legend>

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

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

        如何为元组增加价值?

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

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

          <tbody id='TcXU1'></tbody>
          <bdo id='TcXU1'></bdo><ul id='TcXU1'></ul>
          • <small id='TcXU1'></small><noframes id='TcXU1'>

                  本文介绍了如何为元组增加价值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在编写一个脚本,其中有一个元组列表,例如 ('1','2','3','4').例如:

                  I'm working on a script where I have a list of tuples like ('1','2','3','4'). e.g.:

                  list = [('1','2','3','4'),
                          ('2','3','4','5'),
                          ('3','4','5','6'),
                          ('4','5','6','7')]
                  

                  现在我需要添加'1234''2345''3456''4567' 分别在每个元组的末尾.例如:

                  Now I need to add '1234', '2345','3456' and '4567' respectively at the end of each tuple. e.g:

                  list = [('1','2','3','4','1234'),
                          ('2','3','4','5','2345'),
                          ('3','4','5','6','3456'),
                          ('4','5','6','7','4567')]
                  

                  有没有可能?

                  推荐答案

                  元组是不可变的,不应该改变——这就是列表类型的用途.

                  Tuples are immutable and not supposed to be changed - that is what the list type is for.

                  但是,您可以使用 originalTuple + (newElement,) 替换每个元组,从而创建一个新元组.例如:

                  However, you can replace each tuple using originalTuple + (newElement,), thus creating a new tuple. For example:

                  t = (1,2,3)
                  t = t + (1,)
                  print(t)
                  (1,2,3,1)
                  

                  但我宁愿建议从头开始使用列表,因为它们插入项目的速度更快.

                  But I'd rather suggest to go with lists from the beginning, because they are faster for inserting items.

                  还有一个提示:不要覆盖程序中的内置名称 list,而是调用变量 l 或其他名称.如果覆盖内置名称,则不能在当前范围内再使用它.

                  And another hint: Do not overwrite the built-in name list in your program, rather call the variable l or some other name. If you overwrite the built-in name, you can't use it anymore in the current scope.

                  这篇关于如何为元组增加价值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:Django - 如何在模板“for"循环中进行元组解包 下一篇:元组键值

                  相关文章

                  <small id='12gQw'></small><noframes id='12gQw'>

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

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