簡體   English   中英

如何在python中使用yield函數

[英]How to use yield function in python

SyntaxError: 'yield' 外部函數

>>> for x in range(10):
...     yield x*x
... 
  File "<stdin>", line 2
SyntaxError: 'yield' outside function

我該怎么辦? 當我嘗試在 for 循環中使用簡單的 yield 時。

編輯

您在評論中引用了 scala,所以我認為您可能是在進行列表理解:

>>> squares = [i*i for i in range(10)]
>>> squares
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]

您還可以使用生成器表達式:

>>> squares = (i*i for i in range(10))
>>> squares
<generator object <genexpr> at 0x7f5299e04690>
>>> list(squares)
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]

您需要從函數內部調用yield 這使函數成為生成器函數。 然后,您可以迭代該函數產生的連續值,例如:

def squares(N):
    for i in range(N):
        yield i*i

>>> squares(10)
<generator object squares at 0x7f5299e04500>
>>> for n in squares(10):
...    print(n)
0
1
4
9
16
25
36
49
64
81

>>> list(squares(100))
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116, 2209, 2304, 2401, 2500, 2601, 2704, 2809, 2916, 3025, 3136, 3249, 3364, 3481, 3600, 3721, 3844, 3969, 4096, 4225, 4356, 4489, 4624, 4761, 4900, 5041, 5184, 5329, 5476, 5625, 5776, 5929, 6084, 6241, 6400, 6561, 6724, 6889, 7056, 7225, 7396, 7569, 7744, 7921, 8100, 8281, 8464, 8649, 8836, 9025, 9216, 9409, 9604, 9801]

注意:此語法在 Python 3.7 中已棄用,並將在 Python 3.8 中引發 SyntaxError

lamyield = lambda: [(yield x*x) for x in range(15)]
print(*lamyield()) 

其它的辦法,

lanyield = lambda: (yield from (i ** 2 for i in range(15)))
for i in lanyield():
    print(i) 
0
1
4
9
16
25
36
49
64
81
100
121
144
169
196

[Program finished]

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM