• <tfoot id='HMSUl'></tfoot>

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

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

        <legend id='HMSUl'><style id='HMSUl'><dir id='HMSUl'><q id='HMSUl'></q></dir></style></legend>
      1. Python:为什么“回归"?不会在简单的 for 循环和“打印"中打印出所有列表元素.会做的?

        时间:2023-09-02
          <bdo id='DTNEx'></bdo><ul id='DTNEx'></ul>
          <i id='DTNEx'><tr id='DTNEx'><dt id='DTNEx'><q id='DTNEx'><span id='DTNEx'><b id='DTNEx'><form id='DTNEx'><ins id='DTNEx'></ins><ul id='DTNEx'></ul><sub id='DTNEx'></sub></form><legend id='DTNEx'></legend><bdo id='DTNEx'><pre id='DTNEx'><center id='DTNEx'></center></pre></bdo></b><th id='DTNEx'></th></span></q></dt></tr></i><div id='DTNEx'><tfoot id='DTNEx'></tfoot><dl id='DTNEx'><fieldset id='DTNEx'></fieldset></dl></div>

        • <tfoot id='DTNEx'></tfoot>

              <tbody id='DTNEx'></tbody>
            <legend id='DTNEx'><style id='DTNEx'><dir id='DTNEx'><q id='DTNEx'></q></dir></style></legend>
              1. <small id='DTNEx'></small><noframes id='DTNEx'>

                  本文介绍了Python:为什么“回归"?不会在简单的 for 循环和“打印"中打印出所有列表元素.会做的?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  在我将一个列表附加到另一个列表之后,我试图在 Python 中打印出列表中的所有元素.问题是它只在我使用 PRINT 或 RETURN 时打印出每个元素.如果我使用 print 它会在列表末尾的None"列中打印出整个列表,但 return 只会打印出第一项.为什么?

                  Im trying to print out all elements in a list, in Python, after Ive appended one list to another. The problem is that it only prints out every element when I use PRINT instead or RETURN. If I use print it prints out the whole list in a column with "None" at the end of the list, but return will print out just the first item. Why?

                  这是代码:

                  def union(a,b):
                      a.append(b)
                      for item in a:
                          return item
                  
                  
                  a=[1,2,3,4]
                  b=[4,5,6]
                  print union(a,b)
                  

                  返回:

                  1

                  如果我使用

                  def union(a,b):
                      a.append(b)
                      for item in a:
                          print item
                  
                  a=[1,2,3,4]
                  b=[4,5,6]
                  print union(a,b)
                  

                  相反,我得到:

                  1

                  2

                  3

                  4

                  [4, 5, 6]

                  (甚至不是一行).

                  请注意,我发现了与此问题有关的更多结果(喜欢这个),但它们并不完全相同,而且它们对我来说相当复杂,我刚开始学习编程,谢谢!

                  Please note that Ive found more results with this issue (like this one), but they are not quite the same, and they are quite complicated for me, Im just beggining to learn to program, thanks!

                  推荐答案

                  当你使用 return 语句时,函数结束.您只返回第一个值,循环不会继续,也不能以这种方式一个接一个地返回元素.

                  When you use a return statement, the function ends. You are returning just the first value, the loop does not continue nor can you return elements one after another this way.

                  print 只是将该值写入您的终端,而不是结束函数.循环继续.

                  print just writes that value to your terminal and does not end the function. The loop continues.

                  建立一个列表,然后返回那个:

                  Build a list, then return that:

                  def union(a,b):
                      a.append(b)
                      result = []
                      for item in a:
                          result.append(a)
                      return result
                  

                  或者只是返回一个连接:

                  or just return a concatenation:

                  def union(a, b):
                      return a + b
                  

                  这篇关于Python:为什么“回归"?不会在简单的 for 循环和“打印"中打印出所有列表元素.会做的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:Swig,返回一个双精度数组 下一篇:没有返回任何内容时的文档字符串

                  相关文章

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

                    1. <legend id='L46tb'><style id='L46tb'><dir id='L46tb'><q id='L46tb'></q></dir></style></legend>
                    2. <tfoot id='L46tb'></tfoot>
                    3. <small id='L46tb'></small><noframes id='L46tb'>

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