quot;Returnquot; in Function only Returning one Value(“回归在函数中只返回一个值)
问题描述
假设我编写了一个 for 循环,它将输出所有数字 1 到 x:
Let's say I write a for loop that will output all the numbers 1 to x:
x=4
for number in xrange(1,x+1):
print number,
#Output:
1
2
3
4
现在,将相同的 for 循环放入函数中:
Now, putting that same for loop into a function:
def counter(x):
for number in xrange(1,x+1):
return number
print counter(4)
#Output:
1
为什么我把for循环放到一个函数中只能得到一个值?
Why do I only obtain one value when I put the for-loop into a function?
我一直在通过将 for 循环的所有结果附加到一个列表,然后返回该列表来回避这个问题.
I have been evading this problem by appending all the results of the for-loop to a list, and then returning the list.
为什么 for 循环会追加所有结果,而不只是一个?:
Why does the for loop append all the results, and not just one?:
def counter(x):
output=[]
for number in xrange(1,x+1):
output.append(number)
return output
返回所有值的最佳方法是什么,附加到列表似乎效率很低.
What is the best method of returning all the values, appending to a list seems very inefficient.
推荐答案
return
与关键字名称所暗示的完全一样.当您点击该语句时,它 返回 并且函数的其余部分不会执行.
return
does exactly like the keyword's name implies. When you hit that statement, it returns and the rest of the function is not executed.
您可能想要的是 yield
关键字.这将创建一个生成器函数(一个返回生成器的函数).生成器是可迭代的.每次执行 yield
表达式时,它们都会生成"一个元素.
What you might want instead is the yield
keyword. This will create a generator function (a function that returns a generator). Generators are iterable. They "yield" one element each time the yield
expression is executed.
def func():
for x in range(10):
yield x
generator = func()
for item in generator:
print item
这篇关于“回归"在函数中只返回一个值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:“回归"在函数中只返回一个值
基础教程推荐
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 筛选NumPy数组 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01