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

    <small id='4fQLf'></small><noframes id='4fQLf'>

      <bdo id='4fQLf'></bdo><ul id='4fQLf'></ul>

      在函数结束(例如检查失败)之前在 python 中退出函数(没有返回值)的最佳方法是什么?

      时间:2023-09-02
      <legend id='zVLr1'><style id='zVLr1'><dir id='zVLr1'><q id='zVLr1'></q></dir></style></legend>

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

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

              <tbody id='zVLr1'></tbody>

                本文介绍了在函数结束(例如检查失败)之前在 python 中退出函数(没有返回值)的最佳方法是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                让我们假设一个迭代,我们调用一个没有返回值的函数.这个伪代码解释了我认为我的程序应该表现的方式:

                Let's assume an iteration in which we call a function without a return value. The way I think my program should behave is explained in this pseudocode:

                for element in some_list:
                    foo(element)
                
                def foo(element):
                    do something
                    if check is true:
                        do more (because check was succesful)
                    else:
                        return None
                    do much much more...
                

                如果我在 python 中实现它,我会感到困扰的是,该函数返回一个 None.有没有更好的方法来退出一个没有返回值的函数,如果函数体中的检查失败"?

                If I implement this in python, it bothers me, that the function returns a None. Is there a better way for "exiting a function, that has no return value, if a check fails in the body of the function"?

                推荐答案

                你可以简单地使用

                return
                

                return None
                

                如果执行到达函数体的末尾而没有遇到 return 语句,您的函数也将返回 None.在 Python 中不返回任何内容与返回 None 相同.

                Your function will also return None if execution reaches the end of the function body without hitting a return statement. Returning nothing is the same as returning None in Python.

                这篇关于在函数结束(例如检查失败)之前在 python 中退出函数(没有返回值)的最佳方法是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:Python3 exec,为什么返回None? 下一篇:返回自我python的目的

                相关文章

                  • <bdo id='6vZsr'></bdo><ul id='6vZsr'></ul>

                1. <legend id='6vZsr'><style id='6vZsr'><dir id='6vZsr'><q id='6vZsr'></q></dir></style></legend>
                2. <small id='6vZsr'></small><noframes id='6vZsr'>

                  <tfoot id='6vZsr'></tfoot>

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