Python issues with return statement(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 语句问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Python 的 return 语句问题
基础教程推荐
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 筛选NumPy数组 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01