Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use yield function in python

SyntaxError: 'yield' outside function

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

what should I do? when I try to use simple yield in for loop.

like image 876
gaurav1207 Avatar asked Feb 23 '17 23:02

gaurav1207


Video Answer


1 Answers

EDIT

You referenced scala in you comment so I think that you are probably after a list comprehension:

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

You can also use a generator expression:

>>> 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]

You need to call yield from within a function. This makes the function a generator function. You can then iterate over successive values yielded by the function, for example:

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]
like image 139
mhawke Avatar answered Sep 21 '22 11:09

mhawke