<small id='3LQEO'></small><noframes id='3LQEO'>

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

      1. <tfoot id='3LQEO'></tfoot>

        从函数列表中返回项目.Python

        Return items from list in function. Python(从函数列表中返回项目.Python)

            <tbody id='OL03S'></tbody>

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

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

          <tfoot id='OL03S'></tfoot>
            <legend id='OL03S'><style id='OL03S'><dir id='OL03S'><q id='OL03S'></q></dir></style></legend>
              <bdo id='OL03S'></bdo><ul id='OL03S'></ul>
                • 本文介绍了从函数列表中返回项目.Python的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  my_list = ['a','b','c']
                  
                  def func(input):
                      for i in input:
                          print i
                  print func(my_list)
                  

                  输出

                  a
                  b
                  c
                  None
                  

                  我不想要无",所以我怎样才能执行一行代码来返回输入列表中的项目?

                  我试过了:

                  return for i in input: print i
                  

                  但它不起作用,因为 return 语句不像那样工作

                  but it didn't work because return statements don't work like that

                  推荐答案

                  您正在打印 func 的返回码,即 none.只需调用 func(my_list) 而不使用 print.

                  You are printing the return code from func which is none. Just call func(my_list) without the print.

                  这篇关于从函数列表中返回项目.Python的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  Initialize Multiple Numpy Arrays (Multiple Assignment) - Like MATLAB deal()(初始化多个 Numpy 数组(多重赋值) - 像 MATLAB deal())
                  How to extend Python class init(如何扩展 Python 类初始化)
                  What#39;s the difference between dict() and {}?(dict() 和 {} 有什么区别?)
                  What is a wrapper_descriptor, and why is Foo.__init__() one in this case?(什么是 wrapper_descriptor,为什么 Foo.__init__() 在这种情况下是其中之一?)
                  Initialize list with same bool value(使用相同的布尔值初始化列表)
                  setattr with kwargs, pythonic or not?(setattr 与 kwargs,pythonic 与否?)

                  <tfoot id='v3qSx'></tfoot>

                      • <bdo id='v3qSx'></bdo><ul id='v3qSx'></ul>
                        <legend id='v3qSx'><style id='v3qSx'><dir id='v3qSx'><q id='v3qSx'></q></dir></style></legend>
                          <tbody id='v3qSx'></tbody>

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

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