gpt4 book ai didi

python - 使用 dict() 在循环中返回多个变量

转载 作者:太空宇宙 更新时间:2023-11-03 15:13:59 24 4
gpt4 key购买 nike

我已经编辑了上一节,下面一行中的任何内容都已经回答并且现在已经过时了:

def foo():

x = dict()
i = 0
while i < 10:
x[i] = i*2
i + = 1
yield x[i]

如何在新函数中调用 x[i] 的特定实例?



def foo():

x = dict()
i = 0
while i < 10:
x[i] = i*2
i + = 1
return x[i]

我希望它返回 x[1],x[2],x[3]...x[10],但现在它只返回最终变量。我想这样做的原因是因为在我的实际代码中,我不知道循环会迭代多少次

def main():

variable = foo()
print variable

我只是用它来向自己证明它返回了一些值

最佳答案

为此,考虑使用 yield 表达式:

def foo():
x = dict()
i = 0
while i < 10:
x[i] = x*2
i += 1
yield x[i]

for i in foo():
print i

正如@Ismail 所说,应该是 i += 1 而不是 x += 1

此外,x*2 应该做什么?您是说 i*2 吗?

yield 表达式的使用示例

def next_one(i,n):
while i < n:
yield i
i += 1

>>> for i in next_one(1,10):
... print i
...
1
2
3
4
5
6
7
8
9

[问题更新答案]

您可以使用 next() 运算符执行如下操作:

def next_one(i,n):
while i < n:
yield i
i += 1

def main(variable):
print next(variable)

variable = next_one(1,10)
main(variable)
main(variable)
main(variable)

[OUTPUT]
1
2
3

演示:http://repl.it/R6J

关于python - 使用 dict() 在循环中返回多个变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23147361/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com