这就是问题:
给定以下 Python 程序,假设用户从键盘输入数字 4。返回的值是多少?
N = int(input("enter a positive integer:"))
counter = 1
while (N > 0):
counter = counter * N
N = N - 1
return counter
然而,当我运行系统时,我不断收到外部函数错误
我究竟做错了什么?
谢谢!
您只能从函数内部返回,而不能从循环返回。
看起来你的返回应该在 while 循环之外,并且你的完整代码应该在函数内部。
def func():
N = int(input("enter a positive integer:"))
counter = 1
while (N > 0):
counter = counter * N
N -= 1
return counter # de-indent this 4 spaces to the left.
print func()
如果这些代码不在函数内部,那么您就不需要return
根本不。只需打印的值counter
之外的while loop
.
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)