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

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

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

        Python 的 return 语句问题

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

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

                • <small id='d8A0J'></small><noframes id='d8A0J'>

                • 本文介绍了Python 的 return 语句问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  您好,我对 python 很陌生,想知道您是否可以帮我做点什么.我一直在玩弄这段代码,但似乎无法让它工作.

                  Hello I'm very new to python and was wondering if you could help me with something. I've been playing around with this code and can't seem to get it to work.

                      import math
                  
                  def main():
                      if isPrime(2,7):
                          print("Yes")
                      else:
                          print("No")
                  
                  def isPrime(i,n):
                      if ((n % i == 0) and (i <= math.sqrt(n))):
                          return False
                      if (i >= math.sqrt(n)):
                          print ("is Prime: ",n)
                          return True
                      else:
                          isPrime(i+1,n)
                  main()
                  

                  现在 isPrime 方法的输出如下:

                  Now the output for the isPrime method is as follows:

                  is Prime:  7
                  No
                  

                  我确定该函数应该返回 true,然后它应该打印是".我错过了什么吗?

                  I'm sure the function should return true then it should print "Yes". Am I missing something?

                  推荐答案

                  你正在丢弃递归调用的返回值:

                  You are discarding the return value for the recursive call:

                  def isPrime(i,n):
                      if ((n % i == 0) and (i <= math.sqrt(n))):
                          return False
                      if (i >= math.sqrt(n)):
                          print ("is Prime: ",n)
                          return True
                      else:
                          # No return here
                          isPrime(i+1,n)
                  

                  你也想传播递归调用的值,包括一个 return 语句:

                  You want to propagate the value of the recursive call too, include a return statement:

                  else:
                      return isPrime(i+1,n)
                  

                  现在你的代码打印出来了:

                  Now your code prints:

                  >>> isPrime(2,7)
                  is Prime:  7
                  True
                  

                  这篇关于Python 的 return 语句问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:“回归"在函数中只返回一个值 下一篇:用于测试 ping 的 Python 函数

                  相关文章

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

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

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

                      <tfoot id='e8GiK'></tfoot>

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